Searched refs:note (Results 1 - 24 of 24) 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);
72 SynthBridge::KeyPressure(uchar channel, uchar note, uchar pressure, argument
75 fMidiSynth.KeyPressure(channel + 1, note, pressure, 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,
45 virtual void KeyPressure(uchar channel, uchar note, uchar pressure,
/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);
57 uchar channel, uchar note, uchar pressure, uint32 time)
61 "KEY PRESSURE; channel = %d, note = %d, pressure = %d\n",
62 channel, note, pressure);
34 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
45 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
56 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
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
78 uchar channel, uchar note, uchar pressure, uint32 time)
148 for (uchar note = 0; note <= 0x7F; ++note) {
149 SprayNoteOff(channel, note, 0, time);
264 uchar channel, uchar note, uchar velocity, uint32 time) const
267 channel - 1, note, velocity, MAKE_BIGTIME(time));
273 uchar channel, uchar note, ucha
77 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
263 SprayNoteOff( uchar channel, uchar note, uchar velocity, uint32 time) const argument
272 SprayNoteOn( uchar channel, uchar note, uchar velocity, uint32 time) const argument
281 SprayKeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) const argument
[all...]
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));
45 uchar channel, uchar note, uchar pressure, bigtime_t time)
47 fMidiObject->KeyPressure(channel + 1, note, pressure, 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, velocit
28 NoteOff( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
36 NoteOn( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
44 KeyPressure( uchar channel, uchar note, uchar pressure, 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
138 KeyPressure( uchar channel, uchar note, uchar pressure, bigtime_t time) argument
[all...]
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);
178 uchar channel, uchar note, uchar pressure, uint32 time)
182 channel, note + fTranspose, pressure, time);
159 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
168 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
177 KeyPressure( uchar channel, uchar note, uchar pressure, 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);
36 uchar channel, uchar note, uchar pressure, bigtime_t time);
72 uchar channel, uchar note, uchar velocity, bigtime_t time);
75 uchar channel, uchar note, uchar velocity, bigtime_t time);
78 uchar channel, uchar note, uchar pressure, bigtime_t time);
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);
390 uchar channel, uchar note, uchar pressure, uint32 time)
495 for (uchar note = 0; note <= 0x7F; ++note) {
496 fluid_synth_noteoff(fSynth, channel - 1, note);
367 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
378 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
389 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) 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));
149 uchar channel, uchar note, uchar pressure, uint32 time)
152 channel - 1, note, pressure, 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
148 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
H A DMidiStore.cpp93 BMidiStore::NoteOff(uchar channel, uchar note, uchar velocity, argument
100 event->byte2 = note;
107 BMidiStore::NoteOn(uchar channel, uchar note, argument
114 event->byte2 = note;
121 BMidiStore::KeyPressure(uchar channel, uchar note, argument
128 event->byte2 = note;
263 // only ticks per quarter note
/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);
26 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
68 uchar channel, uchar note, uchar velocity, uint32 time) const;
71 uchar channel, uchar note, uchar velocity, uint32 time) const;
74 uchar channel, uchar note, uchar pressure, 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);
48 uchar channel, uchar note, uchar pressure, 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);
22 uchar channel, uchar note, uchar pressure, 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);
31 uchar channel, uchar note, uchar pressure, 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);
28 uchar channel, uchar note, uchar pressure, 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);
62 uchar channel, uchar note, uchar pressure, bigtime_t time);
H A DMidiProducer.h68 uchar channel, uchar note, uchar velocity,
72 uchar channel, uchar note, uchar velocity,
76 uchar channel, uchar note, uchar pressure,
/haiku/src/kits/midi2/
H A DMidiLocalProducer.cpp69 BMidiLocalProducer::SprayNoteOff(uchar channel, uchar note, argument
75 data[1] = note;
86 BMidiLocalProducer::SprayNoteOn(uchar channel, uchar note, argument
92 data[1] = note;
103 BMidiLocalProducer::SprayKeyPressure(uchar channel, uchar note, argument
109 data[1] = note;
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
243 BMidiLocalConsumer::KeyPressure(uchar channel, uchar note, uchar pressure, bigtime_t time) argument
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css51 warning, caution, important, tip, note {
128 *>warning, *>caution, *>important, *>tip, *>note {
502 warning, caution, tip, note, important {
508 warning>title, caution>title, tip>title, note>title, important>title {
513 warning:before, caution:before, tip:before, note:before, important:before {
530 note:before {
677 note:before {
H A Dcore.css41 mediaobject, mediaobjectco, msg, msgentry, msgexplan, msgmain, msgset, note,
/haiku/headers/private/audio/
H A Dsoundcard.h222 #define WAVE_FAST_RELEASE 0x80 /* bit 7 = Shut off immediately after note off */
239 * playback speed for a note. The base_note defines the tone frequency
243 * The low_note and high_note fields define the minimum and maximum note
249 * the note frequency multiplied by 1000. For example value for the
529 * 0x01 = note event (event[4] = note).
531 * event[2] = MIDI message code (0x80=note off etc.)
694 #define _CHN_VOICE(dev, event, chn, note, parm) \
700 _seqbuf[_seqbufptr+4] = (note);\
706 #define SEQ_START_NOTE(dev, chn, note, vo
[all...]
/haiku/src/system/kernel/debug/
H A Dcore_dump.cpp854 // write note segment
1255 elf_note_team note; local
1256 memset(&note, 0, sizeof(note));
1257 note.nt_id = fTeamInfo.team;
1258 note.nt_uid = fTeamInfo.uid;
1259 note.nt_gid = fTeamInfo.gid;
1260 writer.Write((uint32)sizeof(note));
1261 writer.Write(note);
1270 // determine needed size for the note'
[all...]
/haiku/src/kits/debugger/elf/
H A DCoreFile.cpp359 WARNING("Not enough bytes remaining in notes segment for note "
367 WARNING("Unterminated note name\n");
376 WARNING("Not enough bytes remaining in notes segment for note "
418 WARNING("Unsupported note type %s/%#" B_PRIx32 "\n", name, type);
430 WARNING("Team note too short\n");
438 WARNING("Team note: too short or invalid entry size (%" B_PRIu32 ")\n",
443 NoteTeam note = {}; local
444 _ReadEntry(data, dataSize, note, entrySize);
450 WARNING("Team note args not terminated\n");
454 int32 id = Get(note
[all...]

Completed in 120 milliseconds