Searched refs:note (Results 1 - 25 of 54) sorted by relevance

123

/haiku-fatelf/src/apps/midiplayer/
H A DSynthBridge.cpp55 uchar channel, uchar note, uchar velocity, bigtime_t time)
57 midiSynth.NoteOff(channel + 1, note, velocity, time / 1000);
63 uchar channel, uchar note, uchar velocity, bigtime_t time)
65 midiSynth.NoteOn(channel + 1, note, velocity, time / 1000);
71 uchar channel, uchar note, uchar pressure, bigtime_t time)
73 midiSynth.KeyPressure(channel + 1, note, pressure, time / 1000);
54 NoteOff( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
62 NoteOn( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
70 KeyPressure( uchar channel, uchar note, uchar pressure, bigtime_t time) argument
H A DSynthBridge.h40 uchar channel, uchar note, uchar velocity, bigtime_t time);
43 uchar channel, uchar note, uchar velocity, bigtime_t time);
46 uchar channel, uchar note, uchar pressure, bigtime_t time);
/haiku-fatelf/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 DMidiGlue.h31 uchar channel, uchar note, uchar velocity, bigtime_t time);
34 uchar channel, uchar note, uchar velocity, bigtime_t time);
37 uchar channel, uchar note, uchar pressure, bigtime_t time);
74 uchar channel, uchar note, uchar velocity, bigtime_t time);
77 uchar channel, uchar note, uchar velocity, bigtime_t time);
80 uchar channel, uchar note, uchar pressure, bigtime_t time);
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 DSoftSynth.cpp290 uchar channel, uchar note, uchar velocity, uint32 time)
294 fluid_synth_noteoff(fSynth, channel - 1, note); // velocity isn't used in FS
301 uchar channel, uchar note, uchar velocity, uint32 time)
305 fluid_synth_noteon(fSynth, channel - 1, note, velocity);
312 uchar channel, uchar note, uchar pressure, uint32 time)
417 for (uchar note = 0; note <= 0x7F; ++note) {
418 fluid_synth_noteoff(fSynth, channel - 1, note);
289 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
300 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
311 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
/haiku-fatelf/src/tests/kits/midi/midi_player/
H A DMidi1To2Bridge.cpp47 uchar note,
50 fOutput->SprayNoteOff(channel-1, note, velocity, ToBigtime(time));
54 uchar note,
57 fOutput->SprayNoteOn(channel-1, note, velocity, ToBigtime(time));
62 uchar note,
65 fOutput->SprayKeyPressure(channel-1, note, pressure, ToBigtime(time));
46 NoteOff(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW) argument
53 NoteOn(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW) argument
61 KeyPressure(uchar channel, uchar note, uchar pressure, uint32 time = B_NOW) argument
H A DMidiDelay.cpp38 uchar note,
42 SprayNoteOff(channel, note, velocity, time);
46 uchar note,
50 SprayNoteOn(channel, note, velocity, time);
55 uchar note,
59 SprayKeyPressure(channel, note, pressure, time);
37 NoteOff(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW) argument
45 NoteOn(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW) argument
54 KeyPressure(uchar channel, uchar note, uchar pressure, uint32 time = B_NOW) argument
H A DMidiDelay.h45 uchar note,
50 uchar note,
55 uchar note,
H A DMidi1To2Bridge.h52 uchar note,
57 uchar note,
62 uchar note,
/haiku-fatelf/src/tests/kits/midi/midi_player_replacement/
H A DMidiDelay.cpp38 uchar note,
42 SprayNoteOff(channel, note, velocity, time);
46 uchar note,
50 SprayNoteOn(channel, note, velocity, time);
55 uchar note,
59 SprayKeyPressure(channel, note, pressure, time);
37 NoteOff(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW) argument
45 NoteOn(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW) argument
54 KeyPressure(uchar channel, uchar note, uchar pressure, uint32 time = B_NOW) argument
H A DActivity.h29 virtual void NoteOn(uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
H A DMidiDelay.h45 uchar note,
50 uchar note,
55 uchar note,
H A DActivity.cpp74 void Activity::NoteOn(uchar channel, uchar note, argument
78 SprayNoteOn(channel, note, velocity, time);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dosabi.c370 check_note (bfd *abfd, asection *sect, const char *note,
375 /* Calculate the size of this note. */
384 /* Check whether SECT is big enough to comtain the complete note. */
388 /* Check the note name. */
389 if (bfd_h_get_32 (abfd, note) != (strlen (name) + 1)
390 || strcmp (note + 12, name) != 0)
394 if (bfd_h_get_32 (abfd, note + 4) != descsz)
397 /* Check the note type. */
398 if (bfd_h_get_32 (abfd, note + 8) != type)
412 char *note;
367 check_note(bfd *abfd, asection *sect, const char *note, const char *name, unsigned long descsz, unsigned long type) argument
409 char *note; local
[all...]
/haiku-fatelf/headers/os/midi/
H A DMidi.h21 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
24 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
27 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
69 uchar channel, uchar note, uchar velocity, uint32 time) const;
72 uchar channel, uchar note, uchar velocity, uint32 time) const;
75 uchar channel, uchar note, uchar pressure, uint32 time) const;
H A DMidiSynth.h43 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
46 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
49 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
H A DMidiText.h17 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
20 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
23 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
H A DMidiPort.h26 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
29 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
32 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
/haiku-fatelf/src/system/ldscripts/m68k/
H A Dboot_prg_atari_m68k.ld72 /DISCARD/ : { *(.comment .note .eh_frame) }
/haiku-fatelf/src/bin/gdb/bfd/
H A Delfarm-nabi.c41 PARAMS ((bfd *abfd, Elf_Internal_Note *note));
43 PARAMS ((bfd *abfd, Elf_Internal_Note *note));
854 elf32_arm_nabi_grok_prstatus (abfd, note)
856 Elf_Internal_Note *note;
861 switch (note->descsz)
868 elf_tdata (abfd)->core_signal = bfd_get_16 (abfd, note->descdata + 12);
871 elf_tdata (abfd)->core_pid = bfd_get_32 (abfd, note->descdata + 24);
882 size, note->descpos + offset);
886 elf32_arm_nabi_grok_psinfo (abfd, note)
888 Elf_Internal_Note *note;
[all...]
/haiku-fatelf/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,

Completed in 134 milliseconds

123