Symbol: note_off
fs/proc/vmcore.c
1059
u64 phdr_sz = 0, note_off;
fs/proc/vmcore.c
1083
note_off = sizeof(Elf32_Ehdr) +
fs/proc/vmcore.c
1085
phdr.p_offset = roundup(note_off, PAGE_SIZE);
fs/proc/vmcore.c
868
u64 phdr_sz = 0, note_off;
fs/proc/vmcore.c
892
note_off = sizeof(Elf64_Ehdr) +
fs/proc/vmcore.c
894
phdr.p_offset = roundup(note_off, PAGE_SIZE);
include/sound/opl3.h
275
unsigned long note_off; /* note-off time */
include/sound/seq_midi_emul.h
70
void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
lib/buildid.c
156
loff_t note_off, Elf32_Word note_size)
lib/buildid.c
164
if (check_add_overflow(note_off, note_size, &note_end))
lib/buildid.c
167
while (note_end - note_off > sizeof(Elf32_Nhdr) + note_name_sz) {
lib/buildid.c
168
nhdr = freader_fetch(r, note_off, sizeof(Elf32_Nhdr) + note_name_sz);
lib/buildid.c
175
new_off = note_off + sizeof(Elf32_Nhdr);
lib/buildid.c
185
build_id_off = note_off + sizeof(Elf32_Nhdr) + ALIGN(note_name_sz, 4);
lib/buildid.c
199
note_off = new_off;
sound/core/seq/seq_midi_emul.c
116
if (ops->note_off)
sound/core/seq/seq_midi_emul.c
117
ops->note_off(drv, ev->data.note.note, 0, chan);
sound/core/seq/seq_midi_emul.c
126
if (ops->note_off)
sound/core/seq/seq_midi_emul.c
127
note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity);
sound/core/seq/seq_midi_emul.c
245
if (ops->note_off)
sound/core/seq/seq_midi_emul.c
246
ops->note_off(drv, note, vel, chan);
sound/core/seq/seq_midi_emul.c
278
if (ops->note_off)
sound/core/seq/seq_midi_emul.c
279
ops->note_off(drv, i, 0, chan);
sound/core/seq/seq_midi_emul.c
300
if (ops->note_off)
sound/core/seq/seq_midi_emul.c
301
ops->note_off(drv, i, 0, chan);
sound/core/seq/seq_midi_emul.c
33
static void note_off(const struct snd_midi_op *ops, void *drv,
sound/core/seq/seq_midi_emul.c
613
if (! ops->note_off)
sound/core/seq/seq_midi_emul.c
617
note_off(ops, drv, chan, n, 0);
sound/drivers/opl3/opl3_midi.c
244
if (vp->note_off == jiffies)
sound/drivers/opl3/opl3_midi.c
539
opl3->voices[voice].note_off = jiffies +
sound/drivers/opl3/opl3_seq.c
132
.note_off = snd_opl3_note_off,
sound/drivers/opl4/opl4_seq.c
99
.note_off = snd_opl4_note_off,
sound/synth/emux/emux_seq.c
24
.note_off = snd_emux_note_off,