Home
last modified time | relevance | path

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

12345678910>>...33

/linux/sound/core/seq/
A Dseq_midi_emul.c112 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 …]
/linux/sound/core/seq/oss/
A Dseq_oss_event.c110 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/sound/drivers/opl3/
A Dopl3_midi.c80 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()
295 int key = note; in snd_opl3_note_on()
316 prg = note; in snd_opl3_note_on()
522 note = fm->fix_key; in snd_opl3_note_on()
527 note += (fm->trnsps - 64); in snd_opl3_note_on()
561 vp->note = key; in snd_opl3_note_on()
569 vp2->note = key; in snd_opl3_note_on()
665 chan->number, chan->midi_program, note); in snd_opl3_note_off_unsafe()
[all …]
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…
A Dopl3_synth.c115 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()
400 if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ? in snd_opl3_play_note()
405 if (note->voice < MAX_OPL2_VOICES) { in snd_opl3_play_note()
408 voice_offset = note->voice; in snd_opl3_play_note()
412 voice_offset = note->voice - MAX_OPL2_VOICES; in snd_opl3_play_note()
416 reg_val = (unsigned char) note->fnum; in snd_opl3_play_note()
422 if (note->key_on) in snd_opl3_play_note()
425 reg_val |= (note->octave << 2) & OPL3_BLOCKNUM_MASK; in snd_opl3_play_note()
[all …]
/linux/Documentation/ABI/testing/
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/sound/drivers/opl4/
A Dopl4_synth.c322 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/arm64/kernel/vdso/
A Dvdso.lds.S39 *(.note.GNU-stack .note.gnu.property)
41 .note : { *(.note.*) } :text :note
72 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/s390/kernel/
A Dcrash_dump.c313 Elf64_Nhdr *note; in nt_init_name() local
316 note = (Elf64_Nhdr *)buf; in nt_init_name()
318 note->n_descsz = d_len; in nt_init_name()
319 note->n_type = type; in nt_init_name()
432 Elf64_Nhdr note; in get_vmcoreinfo_old() local
438 if (copy_oldmem_kernel(&note, addr, sizeof(note))) in get_vmcoreinfo_old()
452 *size = note.n_descsz; in get_vmcoreinfo_old()
500 Elf64_Nhdr *note; in nt_final() local
503 note->n_namesz = 0; in nt_final()
504 note->n_descsz = 0; in nt_final()
[all …]
/linux/arch/nds32/kernel/vdso/
A Dvdso.lds.S25 .note : { *(.note.*) } :text :note
39 *(.note.GNU-stack)
53 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/arm64/kernel/vdso32/
A Dvdso.lds.S34 .note : { *(.note.*) } :text :note
46 *(.note.GNU-stack)
60 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/arm/vdso/
A Dvdso.lds.S34 .note : { *(.note.*) } :text :note
50 *(.note.GNU-stack)
64 note PT_NOTE FLAGS(4); /* PF_R */
/linux/tools/perf/util/
A Dprobe-file.c743 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 …]
A Dgenelf.c101 gen_build_id(struct buildid_note *note, in gen_build_id() argument
107 size_t sz = sizeof(note->build_id); in gen_build_id()
114 sret = read(fd, note->build_id, sz); in gen_build_id()
119 memset(note->build_id, 0, sz); in gen_build_id()
125 gen_build_id(struct buildid_note *note, in gen_build_id() argument
130 if (sizeof(note->build_id) < SHA_DIGEST_LENGTH) in gen_build_id()
133 SHA1(code, csize, (unsigned char *)note->build_id); in gen_build_id()
139 gen_build_id(struct buildid_note *note, unsigned long load_addr, const void *code, size_t csize) in gen_build_id() argument
143 if (sizeof(note->build_id) < 16) in gen_build_id()
149 MD5_Final((unsigned char *)note->build_id, &context); in gen_build_id()
/linux/arch/x86/entry/vdso/
A Dvdso-layout.lds.S65 *(.note.gnu.property)
67 .note : { *(.note.*) } :text :note
110 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/mips/vdso/
A Dvdso.lds.S43 .note : { *(.note.*) } :text :note
63 *(.note.GNU-stack)
87 note PT_NOTE FLAGS(4); /* PF_R */
/linux/Documentation/networking/
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/Documentation/RCU/
A DRTFP.txt317 ,note="Available:
437 ,note="Available:
580 ,note="Available:
598 ,note="Available:
613 ,note="Available:
643 ,note="Available:
658 ,note="Available:
671 ,note="Available:
685 ,note="Available:
697 ,note="Available:
[all …]
/linux/arch/powerpc/kernel/vdso64/
A Dvdso64.lds.S31 .note : { *(.note.*) } :text :note
85 *(.note.GNU-stack)
106 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/powerpc/kernel/vdso32/
A Dvdso32.lds.S31 .note : { *(.note.*) } :text :note
87 *(.note.GNU-stack)
107 note PT_NOTE FLAGS(4); /* PF_R */
/linux/Documentation/sound/cards/
A Dhdspm.rst31 .. note::
39 .. note::
48 .. note::
114 .. note::
129 .. note::
167 .. note::
186 .. note::
341 note: ALSA-standard
359 .. note::
366 .. note::
[all …]
/linux/arch/x86/um/vdso/
A Dvdso-layout.lds.S20 .note : { *(.note.*) } :text :note
63 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/sh/kernel/vsyscall/
A Dvsyscall.lds.S40 .note : { *(.note.*) } :text :note
68 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/csky/kernel/vdso/
A Dvdso.lds.S20 .note : { *(.note.*) } :text :note
43 note PT_NOTE FLAGS(4); /* PF_R */
/linux/arch/sparc/vdso/
A Dvdso-layout.lds.S63 .note : { *(.note.*) } :text :note
96 note PT_NOTE FLAGS(4); /* PF_R */

Completed in 42 milliseconds

12345678910>>...33