/haiku/src/kits/midi/ |
H A D | MidiGlue.cpp | 29 uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOff() argument 31 fMidiObject->NoteOff(channel + 1, note, velocity, MAKE_TIME(time)); in NoteOff() 37 uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOn() argument 39 fMidiObject->NoteOn(channel + 1, note, velocity, MAKE_TIME(time)); in NoteOn() 123 uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOff() argument 125 fMidiObject->SprayNoteOff(channel + 1, note, velocity, MAKE_TIME(time)); in NoteOff() 131 uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOn() argument 133 fMidiObject->SprayNoteOn(channel + 1, note, velocity, MAKE_TIME(time)); in NoteOn()
|
H A D | MidiText.cpp | 35 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOff() argument 40 channel, note, velocity); in NoteOff() 46 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOn() argument 51 channel, note, velocity); in NoteOn()
|
H A D | MidiGlue.h | 30 uchar channel, uchar note, uchar velocity, bigtime_t time); 33 uchar channel, uchar note, uchar velocity, bigtime_t time); 72 uchar channel, uchar note, uchar velocity, bigtime_t time); 75 uchar channel, uchar note, uchar velocity, bigtime_t time);
|
H A D | Midi.cpp | 63 BMidi::NoteOff(uchar channel, uchar note, uchar velocity, uint32 time) in NoteOff() argument 70 BMidi::NoteOn(uchar channel, uchar note, uchar velocity, uint32 time) in NoteOn() argument 264 uchar channel, uchar note, uchar velocity, uint32 time) const in SprayNoteOff() argument 267 channel - 1, note, velocity, MAKE_BIGTIME(time)); in SprayNoteOff() 273 uchar channel, uchar note, uchar velocity, uint32 time) const in SprayNoteOn() argument 276 channel - 1, note, velocity, MAKE_BIGTIME(time)); in SprayNoteOn()
|
H A D | MidiSynth.cpp | 160 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOff() argument 163 be_synth->fSynth->NoteOff(channel, note + fTranspose, velocity, time); in NoteOff() 169 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOn() argument 172 be_synth->fSynth->NoteOn(channel, note + fTranspose, velocity, time); in NoteOn()
|
H A D | MidiPort.cpp | 133 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOff() argument 135 fLocalSource->SprayNoteOff(channel - 1, note, velocity, MAKE_BIGTIME(time)); in NoteOff() 141 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOn() argument 143 fLocalSource->SprayNoteOn(channel - 1, note, velocity, MAKE_BIGTIME(time)); in NoteOn()
|
H A D | SoftSynth.cpp | 368 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOff() argument 379 uchar channel, uchar note, uchar velocity, uint32 time) in NoteOn() argument 383 fluid_synth_noteon(fSynth, channel - 1, note, velocity); in NoteOn()
|
H A D | MidiStore.cpp | 93 BMidiStore::NoteOff(uchar channel, uchar note, uchar velocity, in NoteOff() argument 101 event->byte3 = velocity; in NoteOff() 108 uchar velocity, uint32 time) in NoteOn() argument 115 event->byte3 = velocity; in NoteOn()
|
/haiku/src/apps/midiplayer/ |
H A D | SynthBridge.cpp | 58 SynthBridge::NoteOff(uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOff() argument 60 fMidiSynth.NoteOff(channel + 1, note, velocity, time / 1000); in NoteOff() 65 SynthBridge::NoteOn(uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOn() argument 67 fMidiSynth.NoteOn(channel + 1, note, velocity, time / 1000); in NoteOn()
|
H A D | SynthBridge.h | 39 virtual void NoteOff(uchar channel, uchar note, uchar velocity, 42 virtual void NoteOn(uchar channel, uchar note, uchar velocity,
|
/haiku/headers/os/midi/ |
H A D | Midi.h | 20 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW); 23 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW); 68 uchar channel, uchar note, uchar velocity, uint32 time) const; 71 uchar channel, uchar note, uchar velocity, uint32 time) const;
|
H A D | MidiText.h | 16 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW); 19 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
|
H A D | MidiSynth.h | 42 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW); 45 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
|
H A D | MidiPort.h | 25 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW); 28 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
|
H A D | MidiStore.h | 22 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW); 25 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
|
/haiku/src/tests/servers/app/bitmap_drawing/ |
H A D | main.cpp | 471 morph(double* value, double* direction, double* velocity, double min, double max) in morph() argument 473 *value += *velocity; in morph() 484 if (*velocity > *direction) in morph() 485 *velocity += *direction / 10.0; in morph() 487 if (*velocity < *direction) in morph() 488 *velocity = *direction; in morph() 490 if (*velocity < *direction) in morph() 491 *velocity += *direction / 10.0; in morph() 493 if (*velocity > *direction) in morph() 494 *velocity = *direction; in morph()
|
/haiku/src/kits/midi2/ |
H A D | MidiLocalProducer.cpp | 70 uchar velocity, bigtime_t time) const in SprayNoteOff() argument 76 data[2] = velocity; in SprayNoteOff() 87 uchar velocity, bigtime_t time) const in SprayNoteOn() argument 93 data[2] = velocity; in SprayNoteOn()
|
H A D | MidiLocalConsumer.cpp | 229 BMidiLocalConsumer::NoteOff(uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOff() argument 236 BMidiLocalConsumer::NoteOn(uchar channel, uchar note, uchar velocity, bigtime_t time) in NoteOn() argument
|
/haiku/headers/os/midi2/ |
H A D | MidiProducer.h | 68 uchar channel, uchar note, uchar velocity, 72 uchar channel, uchar note, uchar velocity,
|
H A D | MidiConsumer.h | 56 uchar channel, uchar note, uchar velocity, bigtime_t time); 59 uchar channel, uchar note, uchar velocity, bigtime_t time);
|
/haiku/docs/user/midi2/ |
H A D | MidiProducer.dox | 199 uchar velocity, bigtime_t time = 0) const 208 uchar velocity, bigtime_t time = 0) const
|
H A D | MidiConsumer.dox | 211 uchar velocity, bigtime_t time) 220 uchar velocity, bigtime_t time)
|
H A D | midi2intro.dox | 199 uchar channel, uchar note, uchar velocity, bigtime_t time)
|
/haiku/docs/develop/midi/ |
H A D | design.rst | 494 velocity 0 is supposed to be interpreted as a Note Off, for example. 496 case, it still calls the NoteOn() hook with a velocity parameter of
|
/haiku/data/system/data/fortunes/ |
H A D | Tech Support Excuses | 899 Digital Manipulator exceeding velocity parameters
|