| /linux/sound/core/seq/ |
| A D | seq_midi_emul.c | 112 if (ev->data.note.note >= 128) in snd_midi_process_event() 118 if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) { in snd_midi_process_event() 122 chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON; in snd_midi_process_event() 124 ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event() 127 if (! (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON)) in snd_midi_process_event() 130 note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity); in snd_midi_process_event() 134 ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event() 241 chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED; in note_off() 245 chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED; in note_off() 247 chan->note[note] = 0; in note_off() [all …]
|
| A D | seq_ump_convert.c | 85 ev->data.note.channel = val->note.channel; in ump_midi1_to_note_ev() 86 ev->data.note.note = val->note.note; in ump_midi1_to_note_ev() 87 ev->data.note.velocity = val->note.velocity; in ump_midi1_to_note_ev() 207 ev->data.note.note = val->note.note; in ump_midi2_to_note_ev() 383 midi2->note.note = midi1->note.note; in cvt_ump_midi1_to_midi2() 387 midi2->paf.note = midi1->paf.note; in cvt_ump_midi1_to_midi2() 454 midi1->note.note = midi2->note.note; in cvt_ump_midi2_to_midi1() 458 midi1->paf.note = midi2->paf.note; in cvt_ump_midi2_to_midi1() 638 data->note.note = event->data.note.note & 0x7f; in note_ev_to_ump_midi1() 775 data->note.note = event->data.note.note & 0x7f; in note_ev_to_ump_midi2() [all …]
|
| /linux/sound/core/seq/oss/ |
| A D | seq_oss_event.c | 110 q->n.chn, 0, q->n.note, ev); in old_event() 290 if (note == 255 && info->ch[ch].note >= 0) { in note_on_event() 305 } else if (note >= 128) in note_on_event() 308 if (note != info->ch[ch].note && info->ch[ch].note >= 0) in note_on_event() 312 info->ch[ch].note = note; in note_on_event() 351 if (info->ch[ch].note >= 0) { in note_off_event() 352 note = info->ch[ch].note; in note_off_event() 354 info->ch[ch].note = -1; in note_off_event() 379 ev->data.note.channel = ch; in set_note_event() 380 ev->data.note.note = note; in set_note_event() [all …]
|
| /linux/tools/testing/selftests/bpf/ |
| A D | uprobe_multi.ld | 4 .note.gnu.build-id : { *(.note.gnu.build-id) } 9 build_id_start = ADDR(.note.gnu.build-id); 10 build_id_end = ADDR(.note.gnu.build-id) + SIZEOF(.note.gnu.build-id);
|
| /linux/Documentation/ABI/testing/ |
| A D | sysfs-kernel-vmcoreinfo | 8 Shows physical address and size of vmcoreinfo ELF note. 9 First value contains physical address of note in hex and 10 second value contains the size of note in hex. This ELF 11 note info is parsed by second kernel and exported to user 12 space as part of ELF note in /proc/vmcore file. This note
|
| /linux/sound/drivers/opl3/ |
| A D | opl3_midi.c | 87 int note, struct snd_midi_channel *chan) in snd_opl3_calc_pitch() argument 89 int block = ((note / 12) & 0x07) - 1; in snd_opl3_calc_pitch() 90 int idx = (note % 12) + 2; in snd_opl3_calc_pitch() 306 int key = note; in snd_opl3_note_on() 325 prg = note; in snd_opl3_note_on() 525 note = fm->fix_key; in snd_opl3_note_on() 530 note += (fm->trnsps - 64); in snd_opl3_note_on() 562 vp->note = key; in snd_opl3_note_on() 570 vp2->note = key; in snd_opl3_note_on() 661 chan->number, chan->midi_program, note); in snd_opl3_note_off_unsafe() [all …]
|
| A D | opl3_voice.h | 18 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan); 19 void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan); 20 void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan); 21 void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan); 31 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, struct snd_midi_cha…
|
| /linux/arch/arm64/kernel/vdso/ |
| A D | vdso.lds.S | 43 *(.note.GNU-stack .note.gnu.property) 45 .note : { *(.note.*) } :text :note 94 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/sound/drivers/opl4/ |
| A D | opl4_synth.c | 322 if (voice->chan == chan && voice->note == note) { in snd_opl4_do_for_note() 423 int note, pitch, octave; in snd_opl4_update_pitch() local 425 note = chan->drum_channel ? 60 : voice->note; in snd_opl4_update_pitch() 430 pitch = ((note - 60) << 7) * voice->sound->key_scaling / 100 + (60 << 7); in snd_opl4_update_pitch() 482 void snd_opl4_note_on(void *private_data, int note, int vel, struct snd_midi_channel *chan) in snd_opl4_note_on() argument 495 if (note >= regions->regions[i].key_min && in snd_opl4_note_on() 496 note <= regions->regions[i].key_max) { in snd_opl4_note_on() 509 voice[i]->note = note; in snd_opl4_note_on() 567 snd_opl4_do_for_note(opl4, note, chan, snd_opl4_voice_off); in snd_opl4_note_off() 578 void snd_opl4_terminate_note(void *private_data, int note, struct snd_midi_channel *chan) in snd_opl4_terminate_note() argument [all …]
|
| /linux/arch/arm/vdso/ |
| A D | vdso.lds.S | 34 .note : { *(.note.*) } :text :note 50 *(.note.GNU-stack) 64 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/arch/loongarch/vdso/ |
| A D | vdso.lds.S | 24 .note : { *(.note.*) } :text :note 43 *(.note.GNU-stack) 53 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/arch/s390/kernel/ |
| A D | crash_dump.c | 255 Elf64_Nhdr *note; in nt_init_name() local 258 note = (Elf64_Nhdr *)buf; in nt_init_name() 260 note->n_descsz = d_len; in nt_init_name() 261 note->n_type = type; in nt_init_name() 375 Elf64_Nhdr note; in get_vmcoreinfo_old() local 380 if (copy_oldmem_kernel(¬e, addr, sizeof(note))) in get_vmcoreinfo_old() 394 *size = note.n_descsz; in get_vmcoreinfo_old() 442 Elf64_Nhdr *note; in nt_final() local 445 note->n_namesz = 0; in nt_final() 446 note->n_descsz = 0; in nt_final() [all …]
|
| /linux/arch/arm64/kernel/vdso32/ |
| A D | vdso.lds.S | 35 .note : { *(.note.*) } :text :note 65 *(.note.GNU-stack) 79 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/arch/x86/entry/vdso/ |
| A D | vdso-layout.lds.S | 65 *(.note.gnu.property) 67 .note : { *(.note.*) } :text :note 109 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/arch/mips/vdso/ |
| A D | vdso.lds.S | 43 .note : { *(.note.*) } :text :note 63 *(.note.GNU-stack) 87 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/include/sound/ |
| A D | ump_msg.h | 135 u32 note:8; member 139 u32 note:8; 154 u32 note:8; member 158 u32 note:8; 279 u32 note:8; member 287 u32 note:8; 306 u32 note:8; member 313 u32 note:8; 331 u32 note:8; member 338 u32 note:8; [all …]
|
| /linux/tools/lib/bpf/ |
| A D | usdt.c | 623 struct usdt_note note; in collect_usdt_targets() local 631 if (strcmp(note.provider, usdt_provider) != 0 || strcmp(note.name, usdt_name) != 0) in collect_usdt_targets() 730 note.loc_addr, note.base_addr, usdt_abs_ip, usdt_rel_ip, note.args, in collect_usdt_targets() 734 if (note.sema_addr) { in collect_usdt_targets() 753 note.sema_addr); in collect_usdt_targets() 761 path, note.sema_addr, note.base_addr, usdt_sema_off, in collect_usdt_targets() 1176 note->name = name; in parse_usdt_note() 1178 note->args = ""; in parse_usdt_note() 1180 note->args = args; in parse_usdt_note() 1199 s = note->args; in parse_usdt_spec() [all …]
|
| /linux/arch/powerpc/kernel/vdso/ |
| A D | vdso64.lds.S | 30 .note : { *(.note.*) } :text :note 83 *(.note.GNU-stack) 106 note PT_NOTE FLAGS(4); /* PF_R */
|
| A D | vdso32.lds.S | 30 .note : { *(.note.*) } :text :note 87 *(.note.GNU-stack) 109 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/arch/x86/um/vdso/ |
| A D | vdso-layout.lds.S | 20 .note : { *(.note.*) } :text :note 63 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/Documentation/networking/ |
| A D | mac80211-auth-assoc-deauth.txt | 20 note over mac80211,driver 23 end note 50 note over mac80211,driver: cleanup like for authenticate 61 note over mac80211: init rate control 73 note left of userspace: associated now 76 note over userspace 79 end note
|
| /linux/kernel/ |
| A D | vmcore_info.c | 37 struct elf_note *note = (struct elf_note *)buf; in append_elf_note() local 39 note->n_namesz = strlen(name) + 1; in append_elf_note() 40 note->n_descsz = data_len; in append_elf_note() 41 note->n_type = type; in append_elf_note() 42 buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word)); in append_elf_note() 43 memcpy(buf, name, note->n_namesz); in append_elf_note() 44 buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word)); in append_elf_note()
|
| /linux/tools/perf/util/ |
| A D | probe-file.c | 743 return note->bit32 ? in sdt_note__get_addr() 750 return note->bit32 ? in sdt_note__get_ref_ctr_offset() 839 sdtgrp, note->name, pathname, in synthesize_sdt_probe_command() 840 sdt_note__get_addr(note)); in synthesize_sdt_probe_command() 849 if (!note->args) in synthesize_sdt_probe_command() 852 if (note->args) { in synthesize_sdt_probe_command() 853 char **args = argv_split(note->args, &args_count); in synthesize_sdt_probe_command() 911 struct sdt_note *note; in probe_cache__scan_sdt() local 922 list_for_each_entry(note, &sdtlist, note_list) { in probe_cache__scan_sdt() 936 note->name, note->name); in probe_cache__scan_sdt() [all …]
|
| /linux/arch/sh/kernel/vsyscall/ |
| A D | vsyscall.lds.S | 40 .note : { *(.note.*) } :text :note 68 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/arch/csky/kernel/vdso/ |
| A D | vdso.lds.S | 20 .note : { *(.note.*) } :text :note 43 note PT_NOTE FLAGS(4); /* PF_R */
|