Searched refs:velocity (Results 1 - 20 of 20) sorted by relevance

/haiku/src/apps/midiplayer/
H A DSynthBridge.cpp58 SynthBridge::NoteOff(uchar channel, uchar note, uchar velocity, bigtime_t time) argument
60 fMidiSynth.NoteOff(channel + 1, note, velocity, time / 1000);
65 SynthBridge::NoteOn(uchar channel, uchar note, uchar velocity, bigtime_t time) argument
67 fMidiSynth.NoteOn(channel + 1, note, velocity, time / 1000);
H A DSynthBridge.h39 virtual void NoteOff(uchar channel, uchar note, uchar velocity,
42 virtual void NoteOn(uchar channel, uchar note, uchar velocity,
/haiku/src/kits/midi/
H A DMidiText.cpp35 uchar channel, uchar note, uchar velocity, uint32 time)
39 "B_NOTE OFF; channel = %d, note = %d, velocity = %d\n",
40 channel, note, velocity);
46 uchar channel, uchar note, uchar velocity, uint32 time)
50 "B_NOTE ON; channel = %d, note = %d, velocity = %d\n",
51 channel, note, velocity);
34 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
45 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
H A DMidiGlue.cpp29 uchar channel, uchar note, uchar velocity, bigtime_t time)
31 fMidiObject->NoteOff(channel + 1, note, velocity, MAKE_TIME(time));
37 uchar channel, uchar note, uchar velocity, bigtime_t time)
39 fMidiObject->NoteOn(channel + 1, note, velocity, MAKE_TIME(time));
123 uchar channel, uchar note, uchar velocity, bigtime_t time)
125 fMidiObject->SprayNoteOff(channel + 1, note, velocity, MAKE_TIME(time));
131 uchar channel, uchar note, uchar velocity, bigtime_t time)
133 fMidiObject->SprayNoteOn(channel + 1, note, velocity, MAKE_TIME(time));
28 NoteOff( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
36 NoteOn( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
122 NoteOff( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
130 NoteOn( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
H A DMidiSynth.cpp160 uchar channel, uchar note, uchar velocity, uint32 time)
163 be_synth->fSynth->NoteOff(channel, note + fTranspose, velocity, time);
169 uchar channel, uchar note, uchar velocity, uint32 time)
172 be_synth->fSynth->NoteOn(channel, note + fTranspose, velocity, time);
159 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
168 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
H A DMidiGlue.h30 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 DMidi.cpp63 BMidi::NoteOff(uchar channel, uchar note, uchar velocity, uint32 time) argument
70 BMidi::NoteOn(uchar channel, uchar note, uchar velocity, uint32 time) argument
264 uchar channel, uchar note, uchar velocity, uint32 time) const
267 channel - 1, note, velocity, MAKE_BIGTIME(time));
273 uchar channel, uchar note, uchar velocity, uint32 time) const
276 channel - 1, note, velocity, MAKE_BIGTIME(time));
263 SprayNoteOff( uchar channel, uchar note, uchar velocity, uint32 time) const argument
272 SprayNoteOn( uchar channel, uchar note, uchar velocity, uint32 time) const argument
H A DMidiPort.cpp133 uchar channel, uchar note, uchar velocity, uint32 time)
135 fLocalSource->SprayNoteOff(channel - 1, note, velocity, MAKE_BIGTIME(time));
141 uchar channel, uchar note, uchar velocity, uint32 time)
143 fLocalSource->SprayNoteOn(channel - 1, note, velocity, MAKE_BIGTIME(time));
132 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
140 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
H A DSoftSynth.cpp368 uchar channel, uchar note, uchar velocity, uint32 time)
372 fluid_synth_noteoff(fSynth, channel - 1, note); // velocity isn't used in FS
379 uchar channel, uchar note, uchar velocity, uint32 time)
383 fluid_synth_noteon(fSynth, channel - 1, note, velocity);
367 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
378 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
H A DMidiStore.cpp93 BMidiStore::NoteOff(uchar channel, uchar note, uchar velocity, argument
101 event->byte3 = velocity;
108 uchar velocity, uint32 time)
115 event->byte3 = velocity;
107 NoteOn(uchar channel, uchar note, uchar velocity, uint32 time) argument
/haiku/headers/os/midi/
H A DMidi.h20 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 DMidiSynth.h42 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
45 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
H A DMidiText.h16 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
19 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
H A DMidiPort.h25 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
28 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
H A DMidiStore.h22 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
25 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
/haiku/headers/os/midi2/
H A DMidiConsumer.h56 uchar channel, uchar note, uchar velocity, bigtime_t time);
59 uchar channel, uchar note, uchar velocity, bigtime_t time);
H A DMidiProducer.h68 uchar channel, uchar note, uchar velocity,
72 uchar channel, uchar note, uchar velocity,
/haiku/src/kits/midi2/
H A DMidiLocalProducer.cpp70 uchar velocity, bigtime_t time) const
76 data[2] = velocity;
87 uchar velocity, bigtime_t time) const
93 data[2] = velocity;
69 SprayNoteOff(uchar channel, uchar note, uchar velocity, bigtime_t time) const argument
86 SprayNoteOn(uchar channel, uchar note, uchar velocity, bigtime_t time) const argument
H A DMidiLocalConsumer.cpp229 BMidiLocalConsumer::NoteOff(uchar channel, uchar note, uchar velocity, bigtime_t time) argument
236 BMidiLocalConsumer::NoteOn(uchar channel, uchar note, uchar velocity, bigtime_t time) argument
/haiku/src/tests/servers/app/bitmap_drawing/
H A Dmain.cpp471 morph(double* value, double* direction, double* velocity, double min, double max) argument
473 *value += *velocity;
482 // accelerate velocity
484 if (*velocity > *direction)
485 *velocity += *direction / 10.0;
486 // truncate velocity
487 if (*velocity < *direction)
488 *velocity = *direction;
490 if (*velocity < *direction)
491 *velocity
[all...]

Completed in 143 milliseconds