Home
last modified time | relevance | path

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

12345678910>>...32

/linux/sound/core/seq/
H A 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 …]
H A Dseq_ump_convert.c85 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 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/sound/drivers/opl3/
H A Dopl3_midi.c21 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 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…
H A Dopl3_synth.c60 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note);
115 struct snd_dm_fm_note note; in snd_opl3_ioctl() local
116 if (copy_from_user(&note, argp, sizeof(struct snd_dm_fm_note))) in snd_opl3_ioctl()
118 return snd_opl3_play_note(opl3, &note); in snd_opl3_ioctl()
388 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note) in snd_opl3_play_note() argument
398 if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ? in snd_opl3_play_note()
403 if (note->voice < MAX_OPL2_VOICES) { in snd_opl3_play_note()
406 voice_offset = note->voice; in snd_opl3_play_note()
410 voice_offset = note->voice - MAX_OPL2_VOICES; in snd_opl3_play_note()
414 reg_val = (unsigned char) note->fnum; in snd_opl3_play_note()
[all …]
/linux/Documentation/ABI/testing/
H A 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/tools/testing/selftests/bpf/
H A Duprobe_multi.ld4 .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/sound/drivers/opl4/
H A 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/arch/arm64/kernel/vdso/
H A Dvdso.lds.S43 *(.note.GNU-stack .note.gnu.property)
45 .note : { *(.note.*) } :text :note
94 note PT_NOTE FLAGS(4); /* PF_R */
/linux/include/sound/
H A Dump_msg.h135 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/loongarch/vdso/
H A Dvdso.lds.S30 .note : { *(.note.*) } :text :note
49 *(.note.GNU-stack)
59 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/mips/vdso/
H A Dvdso.lds.S43 .note : { *(.note.*) } :text :note
63 *(.note.GNU-stack)
87 note PT_NOTE FLAGS(4); /* PF_R */
/linux/tools/perf/util/
H A Dprobe-file.c722 static unsigned long long sdt_note__get_addr(struct sdt_note *note) in probe_cache__add_entry()
724 return note->bit32 ? in probe_cache__add_entry()
725 (unsigned long long)note->addr.a32[SDT_NOTE_IDX_LOC] : in probe_cache__add_entry()
726 (unsigned long long)note->addr.a64[SDT_NOTE_IDX_LOC]; in probe_cache__add_entry()
729 static unsigned long long sdt_note__get_ref_ctr_offset(struct sdt_note *note) in probe_cache__add_entry()
731 return note->bit32 ? in probe_cache__add_entry()
732 (unsigned long long)note->addr.a32[SDT_NOTE_IDX_REFCTR] : in probe_cache__add_entry()
733 (unsigned long long)note->addr.a64[SDT_NOTE_IDX_REFCTR]; in probe_cache__add_entry()
805 static char *synthesize_sdt_probe_command(struct sdt_note *note, in synthesize_sdt_probe_arg()
820 sdtgrp, note in synthesize_sdt_probe_arg()
741 sdt_note__get_addr(struct sdt_note * note) sdt_note__get_addr() argument
748 sdt_note__get_ref_ctr_offset(struct sdt_note * note) sdt_note__get_ref_ctr_offset() argument
824 synthesize_sdt_probe_command(struct sdt_note * note,const char * pathname,const char * sdtgrp) synthesize_sdt_probe_command() argument
911 struct sdt_note *note; probe_cache__scan_sdt() local
[all...]
/linux/Documentation/networking/
H A 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/kernel/
H A Dvmcore_info.c37 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 Dvdso-layout.lds.S20 .note : { *(.note.*) } :text :note
63 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/parisc/kernel/vdso64/
H A Dvdso64.lds.S23 .note : { *(.note.*) } :text :note
83 /DISCARD/ : { *(.note.GNU-stack) }
92 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/parisc/kernel/vdso32/
H A Dvdso32.lds.S24 .note : { *(.note.*) } :text :note
85 /DISCARD/ : { *(.note.GNU-stack) }
94 note PT_NOTE FLAGS(4); /* PF_R */
/linux/Documentation/RCU/
H A DRTFP.txt317 ,note="Available:
419 ,note="private communication"
437 ,note="Available:
580 ,note="Available:
598 ,note="Available:
613 ,note="Available:
643 ,note="Available:
658 ,note="Available:
671 ,note="Available:
685 ,note="Available:
[all …]
/linux/arch/sh/kernel/vsyscall/
H A Dvsyscall.lds.S40 .note : { *(.note.*) } :text :note
68 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/sparc/vdso/
H A Dvdso-layout.lds.S63 .note : { *(.note.*) } :text :note
96 note PT_NOTE FLAGS(4); /* PF_R */
/linux/Documentation/sound/cards/
H A Dhdspm.rst31 .. note::
39 .. note::
48 .. note::
114 .. note::
129 .. note::
167 .. note::
186 .. note::
341 note: ALSA-standard
347 note: ALSA-standard
353 note: ALSA-standard
[all …]
/linux/arch/riscv/kernel/vdso/
H A Dvdso.lds.S36 .note : { *(.note.*) } :text :note
62 note PT_NOTE FLAGS(4); /* PF_R */
/linux/LICENSES/exceptions/
H A DLinux-syscall-note1 SPDX-Exception-Identifier: Linux-syscall-note
2 SPDX-URL: https://spdx.org/licenses/Linux-syscall-note.html
10 SPDX-License-Identifier: <SPDX-License> WITH Linux-syscall-note
16 Also note that the GPL below is copyrighted by the Free Software
20 Also note that the only valid version of the GPL as far as the kernel

12345678910>>...32