Home
last modified time | relevance | path

Searched refs:note (Results 1 – 25 of 802) sorted by relevance

12345678910>>...33

/linux-6.1.9/sound/core/seq/
Dseq_midi_emul.c35 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 …]
/linux-6.1.9/sound/core/seq/oss/
Dseq_oss_event.c28 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-6.1.9/Documentation/ABI/testing/
Dsysfs-kernel-vmcoreinfo8 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-6.1.9/sound/drivers/opl3/
Dopl3_midi.c14 static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
80 int note, struct snd_midi_channel *chan) in snd_opl3_calc_pitch() argument
82 int block = ((note / 12) & 0x07) - 1; in snd_opl3_calc_pitch()
83 int idx = (note % 12) + 2; in snd_opl3_calc_pitch()
235 snd_opl3_note_off_unsafe(opl3, vp->note, 0, in snd_opl3_timer_func()
275 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_opl3_note_on() argument
295 int key = note; in snd_opl3_note_on()
307 chan->number, chan->midi_program, note, vel); in snd_opl3_note_on()
316 prg = note; in snd_opl3_note_on()
334 snd_opl3_drum_switch(opl3, note, vel, 1, chan); in snd_opl3_note_on()
[all …]
Dopl3_voice.h18 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-6.1.9/arch/arm64/kernel/vdso/
Dvdso.lds.S40 *(.note.GNU-stack .note.gnu.property)
42 .note : { *(.note.*) } :text :note
93 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/sound/drivers/opl4/
Dopl4_synth.c312 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-6.1.9/arch/s390/kernel/
Dcrash_dump.c254 Elf64_Nhdr *note; in nt_init_name() local
257 note = (Elf64_Nhdr *)buf; in nt_init_name()
258 note->n_namesz = strlen(name) + 1; in nt_init_name()
259 note->n_descsz = d_len; in nt_init_name()
260 note->n_type = type; in nt_init_name()
263 memcpy(buf + len, name, note->n_namesz); in nt_init_name()
264 len = roundup(len + note->n_namesz, 4); in nt_init_name()
266 memcpy(buf + len, desc, note->n_descsz); in nt_init_name()
267 len = roundup(len + note->n_descsz, 4); in nt_init_name()
374 Elf64_Nhdr note; in get_vmcoreinfo_old() local
[all …]
/linux-6.1.9/arch/arm/vdso/
Dvdso.lds.S34 .note : { *(.note.*) } :text :note
50 *(.note.GNU-stack)
64 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/loongarch/vdso/
Dvdso.lds.S24 .note : { *(.note.*) } :text :note
43 *(.note.GNU-stack)
53 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/arm64/kernel/vdso32/
Dvdso.lds.S35 .note : { *(.note.*) } :text :note
65 *(.note.GNU-stack)
79 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/x86/entry/vdso/
Dvdso-layout.lds.S65 *(.note.gnu.property)
67 .note : { *(.note.*) } :text :note
109 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/mips/vdso/
Dvdso.lds.S43 .note : { *(.note.*) } :text :note
63 *(.note.GNU-stack)
87 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/tools/lib/bpf/
Dusdt.c570 static int parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie);
617 struct usdt_note note; in collect_usdt_targets() local
621 err = parse_usdt_note(elf, path, &nhdr, data->d_buf, name_off, desc_off, &note); in collect_usdt_targets()
625 if (strcmp(note.provider, usdt_provider) != 0 || strcmp(note.name, usdt_name) != 0) in collect_usdt_targets()
655 usdt_abs_ip = note.loc_addr; in collect_usdt_targets()
657 usdt_abs_ip += base_addr - note.base_addr; in collect_usdt_targets()
724 note.loc_addr, note.base_addr, usdt_abs_ip, usdt_rel_ip, note.args, in collect_usdt_targets()
728 if (note.sema_addr) { in collect_usdt_targets()
736 seg = find_elf_seg(segs, seg_cnt, note.sema_addr); in collect_usdt_targets()
740 usdt_provider, usdt_name, path, note.sema_addr); in collect_usdt_targets()
[all …]
/linux-6.1.9/arch/powerpc/kernel/vdso/
Dvdso32.lds.S30 .note : { *(.note.*) } :text :note
85 *(.note.GNU-stack)
105 note PT_NOTE FLAGS(4); /* PF_R */
Dvdso64.lds.S30 .note : { *(.note.*) } :text :note
83 *(.note.GNU-stack)
104 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/x86/um/vdso/
Dvdso-layout.lds.S20 .note : { *(.note.*) } :text :note
63 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/Documentation/networking/
Dmac80211-auth-assoc-deauth.txt20 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-6.1.9/tools/perf/util/
Dprobe-file.c741 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-6.1.9/arch/csky/kernel/vdso/
Dvdso.lds.S20 .note : { *(.note.*) } :text :note
43 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/sh/kernel/vsyscall/
Dvsyscall.lds.S40 .note : { *(.note.*) } :text :note
68 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/parisc/kernel/vdso32/
Dvdso32.lds.S24 .note : { *(.note.*) } :text :note
85 /DISCARD/ : { *(.note.GNU-stack) }
94 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/parisc/kernel/vdso64/
Dvdso64.lds.S23 .note : { *(.note.*) } :text :note
83 /DISCARD/ : { *(.note.GNU-stack) }
92 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/riscv/kernel/vdso/
Dvdso.lds.S26 .note : { *(.note.*) } :text :note
59 note PT_NOTE FLAGS(4); /* PF_R */
/linux-6.1.9/arch/sparc/vdso/
Dvdso-layout.lds.S63 .note : { *(.note.*) } :text :note
96 note PT_NOTE FLAGS(4); /* PF_R */

12345678910>>...33