note 63 crypto/ansi_cprng.c printk(KERN_CRIT "%s", note);
note 1314 fs/binfmt_elf.c note->name = name;
note 1315 fs/binfmt_elf.c note->type = type;
note 1316 fs/binfmt_elf.c note->datasz = sz;
note 1317 fs/binfmt_elf.c note->data = data;
note 1402 fs/binfmt_elf.c fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv);
note 1332 fs/binfmt_elf_fdpic.c note->name = name;
note 1333 fs/binfmt_elf_fdpic.c note->type = type;
note 1334 fs/binfmt_elf_fdpic.c note->datasz = sz;
note 1335 fs/binfmt_elf_fdpic.c note->data = data;
note 359 include/asm-generic/vmlinux.lds.h *(.note.*) \
note 42 include/linux/elfnote.h .pushsection .note.name, flags,@note ; \
note 1157 include/linux/soundcard.h _seqbuf[_seqbufptr+4] = (note);\
note 1164 include/linux/soundcard.h _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
note 1167 include/linux/soundcard.h _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
note 1170 include/linux/soundcard.h _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
note 199 include/sound/asequencer.h unsigned char note;
note 288 include/sound/asequencer.h struct snd_seq_ev_note note;
note 179 include/sound/emux_synth.h unsigned char note; /* Note currently assigned to this voice */
note 291 include/sound/opl3.h unsigned char note; /* Note currently assigned to this voice */
note 50 include/sound/seq_midi_emul.h unsigned char note[128]; /* Current status for all notes */
note 83 include/sound/seq_midi_emul.h void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
note 84 include/sound/seq_midi_emul.h void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
note 85 include/sound/seq_midi_emul.h void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
note 86 include/sound/seq_midi_emul.h void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate note immediately */
note 1088 kernel/kexec.c struct elf_note note;
note 1090 kernel/kexec.c note.n_namesz = strlen(name) + 1;
note 1091 kernel/kexec.c note.n_descsz = data_len;
note 1092 kernel/kexec.c note.n_type = type;
note 1093 kernel/kexec.c memcpy(buf, ¬e, sizeof(note));
note 1094 kernel/kexec.c buf += (sizeof(note) + 3)/4;
note 1095 kernel/kexec.c memcpy(buf, name, note.n_namesz);
note 1096 kernel/kexec.c buf += (note.n_namesz + 3)/4;
note 1097 kernel/kexec.c memcpy(buf, data, note.n_descsz);
note 1098 kernel/kexec.c buf += (note.n_descsz + 3)/4;
note 1105 kernel/kexec.c struct elf_note note;
note 1107 kernel/kexec.c note.n_namesz = 0;
note 1108 kernel/kexec.c note.n_descsz = 0;
note 1109 kernel/kexec.c note.n_type = 0;
note 1110 kernel/kexec.c memcpy(buf, ¬e, sizeof(note));
note 65 sound/core/seq/oss/seq_oss_device.h int note, vel;
note 111 sound/core/seq/oss/seq_oss_event.c return note_off_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev);
note 114 sound/core/seq/oss/seq_oss_event.c return note_on_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev);
note 122 sound/core/seq/oss/seq_oss_event.c q->n.chn, 0, q->n.note, ev);
note 193 sound/core/seq/oss/seq_oss_event.c return note_on_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev);
note 196 sound/core/seq/oss/seq_oss_event.c return note_off_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev);
note 200 sound/core/seq/oss/seq_oss_event.c q->v.chn, q->v.note, q->v.parm, ev);
note 293 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note 296 sound/core/seq/oss/seq_oss_event.c if (note == 255 && info->ch[ch].note >= 0) {
note 310 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, type, ch, info->ch[ch].note, vel, ev);
note 311 sound/core/seq/oss/seq_oss_event.c } else if (note >= 128)
note 314 sound/core/seq/oss/seq_oss_event.c if (note != info->ch[ch].note && info->ch[ch].note >= 0)
note 316 sound/core/seq/oss/seq_oss_event.c set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEOFF, ch, info->ch[ch].note, 0, ev);
note 318 sound/core/seq/oss/seq_oss_event.c info->ch[ch].note = note;
note 321 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note 326 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note 329 sound/core/seq/oss/seq_oss_event.c if (note >= 128) /* key pressure: shifted by 128 */
note 330 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_KEYPRESS, ch, note - 128, vel, ev);
note 332 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note 348 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note 351 sound/core/seq/oss/seq_oss_event.c if (info->ch[ch].note >= 0) {
note 352 sound/core/seq/oss/seq_oss_event.c note = info->ch[ch].note;
note 354 sound/core/seq/oss/seq_oss_event.c info->ch[ch].note = -1;
note 355 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEOFF, ch, note, vel, ev);
note 362 sound/core/seq/oss/seq_oss_event.c return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEOFF, ch, note, vel, ev);
note 379 sound/core/seq/oss/seq_oss_event.c ev->data.note.channel = ch;
note 380 sound/core/seq/oss/seq_oss_event.c ev->data.note.note = note;
note 381 sound/core/seq/oss/seq_oss_event.c ev->data.note.velocity = vel;
note 43 sound/core/seq/oss/seq_oss_event.h unsigned char note;
note 80 sound/core/seq/oss/seq_oss_event.h unsigned char note, parm;
note 580 sound/core/seq/oss/seq_oss_midi.c ossev.v.note = ev->data.note.note;
note 581 sound/core/seq/oss/seq_oss_midi.c ossev.v.parm = ev->data.note.velocity;
note 582 sound/core/seq/oss/seq_oss_midi.c ossev.v.chn = ev->data.note.channel;
note 389 sound/core/seq/oss/seq_oss_synth.c info->ch[i].note = -1;
note 863 sound/core/seq/seq_clientmgr.c ev->time.tick += ev->data.note.duration;
note 867 sound/core/seq/seq_clientmgr.c ev->time.time.tv_nsec += 1000000 * (ev->data.note.duration % 1000);
note 868 sound/core/seq/seq_clientmgr.c ev->time.time.tv_sec += ev->data.note.duration / 1000 +
note 873 sound/core/seq/seq_clientmgr.c ev->data.note.velocity = ev->data.note.off_velocity;
note 98 sound/core/seq/seq_midi_emul.c dest_channel = ev->data.note.channel;
note 115 sound/core/seq/seq_midi_emul.c if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0)
note 122 sound/core/seq/seq_midi_emul.c if (ev->data.note.note >= 128)
note 128 sound/core/seq/seq_midi_emul.c if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) {
note 130 sound/core/seq/seq_midi_emul.c ops->note_off(drv, ev->data.note.note, 0, chan);
note 132 sound/core/seq/seq_midi_emul.c chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON;
note 134 sound/core/seq/seq_midi_emul.c ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan);
note 137 sound/core/seq/seq_midi_emul.c if (! (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON))
note 140 sound/core/seq/seq_midi_emul.c note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity);
note 144 sound/core/seq/seq_midi_emul.c ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan);
note 249 sound/core/seq/seq_midi_emul.c chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED;
note 250 sound/core/seq/seq_midi_emul.c } else if (chan->note[note] & SNDRV_MIDI_NOTE_SOSTENUTO) {
note 253 sound/core/seq/seq_midi_emul.c chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED;
note 255 sound/core/seq/seq_midi_emul.c chan->note[note] = 0;
note 257 sound/core/seq/seq_midi_emul.c ops->note_off(drv, note, vel, chan);
note 283 sound/core/seq/seq_midi_emul.c if (chan->note[i] & SNDRV_MIDI_NOTE_RELEASED) {
note 284 sound/core/seq/seq_midi_emul.c chan->note[i] = SNDRV_MIDI_NOTE_OFF;
note 297 sound/core/seq/seq_midi_emul.c if (chan->note[i] & SNDRV_MIDI_NOTE_ON)
note 298 sound/core/seq/seq_midi_emul.c chan->note[i] |= SNDRV_MIDI_NOTE_SOSTENUTO;
note 303 sound/core/seq/seq_midi_emul.c if (chan->note[i] & SNDRV_MIDI_NOTE_SOSTENUTO) {
note 304 sound/core/seq/seq_midi_emul.c chan->note[i] &= ~SNDRV_MIDI_NOTE_SOSTENUTO;
note 305 sound/core/seq/seq_midi_emul.c if (chan->note[i] & SNDRV_MIDI_NOTE_RELEASED) {
note 306 sound/core/seq/seq_midi_emul.c chan->note[i] = SNDRV_MIDI_NOTE_OFF;
note 391 sound/core/seq/seq_midi_emul.c memset(chan->note, 0, sizeof(chan->note));
note 602 sound/core/seq/seq_midi_emul.c if (chan->note[n]) {
note 604 sound/core/seq/seq_midi_emul.c chan->note[n] = 0;
note 620 sound/core/seq/seq_midi_emul.c if (chan->note[n] == SNDRV_MIDI_NOTE_ON)
note 313 sound/core/seq/seq_midi_event.c ev->data.note.channel = dev->buf[0] & 0x0f;
note 314 sound/core/seq/seq_midi_event.c ev->data.note.note = dev->buf[1];
note 315 sound/core/seq/seq_midi_event.c ev->data.note.velocity = dev->buf[2];
note 379 sound/core/seq/seq_midi_event.c cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f);
note 415 sound/core/seq/seq_midi_event.c buf[0] = ev->data.note.note & 0x7f;
note 416 sound/core/seq/seq_midi_event.c buf[1] = ev->data.note.velocity & 0x7f;
note 358 sound/core/seq/seq_prioq.c if (ev->data.note.channel != info->channel)
note 194 sound/drivers/opl3/opl3_drums.c if ((note < 35) || (note > 81))
note 196 sound/drivers/opl3/opl3_drums.c drum_mask = snd_opl3_drum_table[note - 35];
note 98 sound/drivers/opl3/opl3_midi.c int block = ((note / 12) & 0x07) - 1;
note 99 sound/drivers/opl3/opl3_midi.c int idx = (note % 12) + 2;
note 250 sound/drivers/opl3/opl3_midi.c snd_opl3_note_off(opl3, vp->note, 0, vp->chan);
note 309 sound/drivers/opl3/opl3_midi.c int key = note;
note 321 sound/drivers/opl3/opl3_midi.c chan->number, chan->midi_program, note, vel);
note 330 sound/drivers/opl3/opl3_midi.c prg = note;
note 348 sound/drivers/opl3/opl3_midi.c snd_opl3_drum_switch(opl3, note, vel, 1, chan);
note 530 sound/drivers/opl3/opl3_midi.c note = fm->fix_key;
note 535 sound/drivers/opl3/opl3_midi.c note += (fm->trnsps - 64);
note 537 sound/drivers/opl3/opl3_midi.c snd_opl3_calc_pitch(&fnum, &blocknum, note, chan);
note 569 sound/drivers/opl3/opl3_midi.c vp->note = key;
note 577 sound/drivers/opl3/opl3_midi.c vp2->note = key;
note 674 sound/drivers/opl3/opl3_midi.c chan->number, chan->midi_program, note);
note 681 sound/drivers/opl3/opl3_midi.c snd_opl3_drum_switch(opl3, note, vel, 0, chan);
note 689 sound/drivers/opl3/opl3_midi.c if (vp->state > 0 && vp->chan == chan && vp->note == note) {
note 758 sound/drivers/opl3/opl3_midi.c snd_opl3_calc_pitch(&fnum, &blocknum, vp->note, vp->chan);
note 123 sound/drivers/opl3/opl3_synth.c struct snd_dm_fm_note note;
note 124 sound/drivers/opl3/opl3_synth.c if (copy_from_user(¬e, argp, sizeof(struct snd_dm_fm_note)))
note 126 sound/drivers/opl3/opl3_synth.c return snd_opl3_play_note(opl3, ¬e);
note 408 sound/drivers/opl3/opl3_synth.c if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ?
note 413 sound/drivers/opl3/opl3_synth.c if (note->voice < MAX_OPL2_VOICES) {
note 416 sound/drivers/opl3/opl3_synth.c voice_offset = note->voice;
note 420 sound/drivers/opl3/opl3_synth.c voice_offset = note->voice - MAX_OPL2_VOICES;
note 424 sound/drivers/opl3/opl3_synth.c reg_val = (unsigned char) note->fnum;
note 430 sound/drivers/opl3/opl3_synth.c if (note->key_on)
note 433 sound/drivers/opl3/opl3_synth.c reg_val |= (note->octave << 2) & OPL3_BLOCKNUM_MASK;
note 435 sound/drivers/opl3/opl3_synth.c reg_val |= (unsigned char) (note->fnum >> 8) & OPL3_FNUM_HIGH_MASK;
note 163 sound/drivers/opl4/opl4_local.h int note;
note 322 sound/drivers/opl4/opl4_synth.c if (voice->chan == chan && voice->note == note) {
note 423 sound/drivers/opl4/opl4_synth.c int note, pitch, octave;
note 425 sound/drivers/opl4/opl4_synth.c note = chan->drum_channel ? 60 : voice->note;
note 430 sound/drivers/opl4/opl4_synth.c pitch = ((note - 60) << 7) * voice->sound->key_scaling / 100 + (60 << 7);
note 495 sound/drivers/opl4/opl4_synth.c if (note >= regions->regions[i].key_min &&
note 496 sound/drivers/opl4/opl4_synth.c note <= regions->regions[i].key_max) {
note 510 sound/drivers/opl4/opl4_synth.c voice[i]->note = note;
note 569 sound/drivers/opl4/opl4_synth.c snd_opl4_do_for_note(opl4, note, chan, snd_opl4_voice_off);
note 585 sound/drivers/opl4/opl4_synth.c snd_opl4_do_for_note(opl4, note, chan, snd_opl4_terminate_voice);
note 268 sound/oss/dev_table.h int (*kill_note) (int dev, int voice, int note, int velocity);
note 269 sound/oss/dev_table.h int (*start_note) (int dev, int voice, int note, int velocity);
note 280 sound/oss/dev_table.h int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
note 288 sound/oss/midi_synth.c if (note < 0 || note > 127)
note 306 sound/oss/midi_synth.c if (!prefix_cmd(orig_dev, note))
note 309 sound/oss/midi_synth.c midi_outc(orig_dev, note);
note 329 sound/oss/midi_synth.c midi_outc(orig_dev, note);
note 340 sound/oss/midi_synth.c midi_outc(orig_dev, note);
note 378 sound/oss/midi_synth.c if (note < 0 || note > 127)
note 396 sound/oss/midi_synth.c if (!prefix_cmd(orig_dev, note))
note 398 sound/oss/midi_synth.c midi_outc(orig_dev, note);
note 407 sound/oss/midi_synth.c midi_outc(orig_dev, note);
note 473 sound/oss/opl3.c if (note == 255) /*
note 647 sound/oss/opl3.c freq = devc->voc[voice].orig_freq = note_to_freq(note) / 1000;
note 355 sound/oss/sequencer.c memcpy(&queue[qtail * EV_SZ], note, EV_SZ);
note 423 sound/oss/sequencer.c key = (chn << 8) | (note + 1);
note 435 sound/oss/sequencer.c key = (chn << 8) | (note + 1);
note 437 sound/oss/sequencer.c voice = synth_devs[dev]->alloc_voice(dev, chn, note,
note 465 sound/oss/sequencer.c voice = find_voice(dev, chn, note);
note 477 sound/oss/sequencer.c if (note > 127 && note != 255) /* Not a seq2 feature */
note 483 sound/oss/sequencer.c voice = alloc_voice(dev, chn, note);
note 497 sound/oss/sequencer.c synth_devs[dev]->set_instr(dev, voice, 128 + note);
note 498 sound/oss/sequencer.c synth_devs[dev]->chn_info[chn].pgm_num = 128 + note;
note 502 sound/oss/sequencer.c synth_devs[dev]->start_note(dev, voice, note, parm);
note 508 sound/oss/sequencer.c synth_devs[dev]->kill_note(dev, voice, note, parm);
note 1567 sound/oss/sequencer.c int note, octave, note_freq;
note 1577 sound/oss/sequencer.c note = note_num % 12;
note 1579 sound/oss/sequencer.c note_freq = notes[note];
note 76 sound/synth/emux/emux_synth.c key = note; /* remember the original note */
note 77 sound/synth/emux/emux_synth.c nvoices = get_zone(emu, port, ¬e, vel, chan, table);
note 112 sound/synth/emux/emux_synth.c vp->note = note;
note 178 sound/synth/emux/emux_synth.c vp->chan == chan && vp->key == note) {
note 257 sound/synth/emux/emux_synth.c vp->chan == chan && vp->key == note) {
note 389 sound/synth/emux/emux_synth.c vp->key == note)
note 413 sound/synth/emux/emux_synth.c terminate_note1(emu, note, chan, 1);
note 835 sound/synth/emux/emux_synth.c offset = (vp->note - vp->reg.root) * 4096 / 12;
note 951 sound/synth/emux/soundfont.c int note, sample_id;
note 1029 sound/synth/emux/soundfont.c note = freq_to_note(patch.base_note);
note 1030 sound/synth/emux/soundfont.c zone->v.root = note / 100;
note 1031 sound/synth/emux/soundfont.c zone->v.tune = -(note % 100);