/linux/sound/core/seq/ |
H A D | seq_midi_emul.c | 35 int note, int vel); 88 dest_channel = ev->data.note.channel; in snd_midi_process_event() 105 if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) in snd_midi_process_event() 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() 120 ops->note_off(drv, ev->data.note.note, 0, chan); 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() [all …]
|
H 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() 136 unsigned char status = val->note.status; in cvt_ump_midi1_to_event() 206 ev->data.note.channel = val->note.channel; in ump_midi2_to_note_ev() 207 ev->data.note.note = val->note.note; in ump_midi2_to_note_ev() 208 ev->data.note.velocity = downscale_16_to_7bit(val->note.velocity); in ump_midi2_to_note_ev() 213 !ev->data.note.velocity) in ump_midi2_to_note_ev() 214 ev->data.note.velocity = 1; in ump_midi2_to_note_ev() 306 unsigned char status = val->note.status; in cvt_ump_midi2_to_event() [all …]
|
/linux/sound/core/seq/oss/ |
H A D | seq_oss_event.c | 28 static int note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd… 29 static int note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct sn… 30 static int set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel,… 99 return note_off_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event() 102 return note_on_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event() 110 q->n.chn, 0, q->n.note, ev); in old_event() 181 return note_on_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event() 184 return note_off_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event() 188 q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event() 274 note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event … in note_on_event() argument [all …]
|
/linux/tools/testing/selftests/bpf/ |
H 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/ |
H 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/ |
H A D | opl3_midi.c | 21 static void snd_opl3_note_off_unsafe(void *p, int note, int vel, 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() 246 snd_opl3_note_off_unsafe(opl3, vp->note, 0, in snd_opl3_timer_func() 286 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_opl3_note_on() argument 306 int key = note; in snd_opl3_note_on() 317 chan->number, chan->midi_program, note, vel); in snd_opl3_note_on() 325 prg = note; in snd_opl3_note_on() 343 snd_opl3_drum_switch(opl3, note, vel, 1, chan); in snd_opl3_note_on() [all …]
|
H 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/sound/drivers/opl4/ |
H A D | opl4_synth.c | 312 static void snd_opl4_do_for_note(struct snd_opl4 *opl4, int note, struct snd_midi_channel *chan, in snd_opl4_do_for_note() argument 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() 563 void snd_opl4_note_off(void *private_data, int note, int vel, struct snd_midi_channel *chan) in snd_opl4_note_off() argument [all …]
|
/linux/arch/arm64/kernel/vdso/ |
H 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/arch/arm/vdso/ |
H 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/ |
H A D | vdso.lds.S | 24 .note : { *(.note.*) } :text :note 43 *(.note.GNU-stack) 53 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/arch/arm64/kernel/vdso32/ |
H A D | vdso.lds.S | 35 .note : { *(.note.*) } :text :note 65 *(.note.GNU-stack) 79 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/arch/mips/vdso/ |
H A D | vdso.lds.S | 43 .note : { *(.note.*) } :text :note 63 *(.note.GNU-stack) 87 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/arch/x86/entry/vdso/ |
H A D | vdso-layout.lds.S | 65 *(.note.gnu.property) 67 .note : { *(.note.*) } :text :note 109 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/tools/lib/bpf/ |
H A D | usdt.c | 576 static int parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie); 623 struct usdt_note note; in collect_usdt_targets() local 627 err = parse_usdt_note(elf, path, &nhdr, data->d_buf, name_off, desc_off, ¬e); in collect_usdt_targets() 631 if (strcmp(note.provider, usdt_provider) != 0 || strcmp(note.name, usdt_name) != 0) in collect_usdt_targets() 661 usdt_abs_ip = note.loc_addr; in collect_usdt_targets() 663 usdt_abs_ip += base_addr - note.base_addr; 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() 742 seg = find_elf_seg(segs, seg_cnt, note.sema_addr); in collect_usdt_targets() 746 usdt_provider, usdt_name, path, note.sema_addr); in collect_usdt_targets() [all …]
|
/linux/include/sound/ |
H A D | ump_msg.h | 135 u32 note:8; member 139 u32 note:8; 154 u32 note:8; member 158 u32 note:8; 261 struct snd_ump_midi1_msg_note note; member 279 u32 note:8; member 287 u32 note:8; 306 u32 note:8; member 313 u32 note:8; 331 u32 note:8; member [all …]
|
/linux/arch/powerpc/kernel/vdso/ |
H A D | vdso64.lds.S | 30 .note : { *(.note.*) } :text :note 83 *(.note.GNU-stack) 106 note PT_NOTE FLAGS(4); /* PF_R */
|
H A D | vdso32.lds.S | 30 .note : { *(.note.*) } :text :note 87 *(.note.GNU-stack) 109 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/tools/perf/util/ |
H A D | probe-file.c | 741 static unsigned long long sdt_note__get_addr(struct sdt_note *note) in sdt_note__get_addr() argument 743 return note->bit32 ? in sdt_note__get_addr() 744 (unsigned long long)note->addr.a32[SDT_NOTE_IDX_LOC] : in sdt_note__get_addr() 745 (unsigned long long)note->addr.a64[SDT_NOTE_IDX_LOC]; in sdt_note__get_addr() 748 static unsigned long long sdt_note__get_ref_ctr_offset(struct sdt_note *note) in sdt_note__get_ref_ctr_offset() argument 750 return note->bit32 ? in sdt_note__get_ref_ctr_offset() 751 (unsigned long long)note->addr.a32[SDT_NOTE_IDX_REFCTR] : in sdt_note__get_ref_ctr_offset() 752 (unsigned long long)note->addr.a64[SDT_NOTE_IDX_REFCTR]; in sdt_note__get_ref_ctr_offset() 824 static char *synthesize_sdt_probe_command(struct sdt_note *note, in synthesize_sdt_probe_command() argument 839 sdtgrp, note->name, pathname, in synthesize_sdt_probe_command() [all …]
|
/linux/Documentation/networking/ |
H 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/ |
H 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/arch/x86/um/vdso/ |
H A D | vdso-layout.lds.S | 20 .note : { *(.note.*) } :text :note 63 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/arch/parisc/kernel/vdso64/ |
H A D | vdso64.lds.S | 23 .note : { *(.note.*) } :text :note 83 /DISCARD/ : { *(.note.GNU-stack) } 92 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/arch/parisc/kernel/vdso32/ |
H A D | vdso32.lds.S | 24 .note : { *(.note.*) } :text :note 85 /DISCARD/ : { *(.note.GNU-stack) } 94 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux/arch/sh/kernel/vsyscall/ |
H A D | vsyscall.lds.S | 40 .note : { *(.note.*) } :text :note 68 note PT_NOTE FLAGS(4); /* PF_R */
|