note               37 arch/arc/include/asm/tlb-mmu1.h asr r0,r1,12        ; get set # <<1, note bit 12=R=0
note               95 arch/powerpc/platforms/powernv/opal-core.c 	Elf64_Nhdr *note = (Elf64_Nhdr *)buf;
note               98 arch/powerpc/platforms/powernv/opal-core.c 	note->n_namesz = cpu_to_be32(namesz);
note               99 arch/powerpc/platforms/powernv/opal-core.c 	note->n_descsz = cpu_to_be32(data_len);
note              100 arch/powerpc/platforms/powernv/opal-core.c 	note->n_type   = cpu_to_be32(type);
note              101 arch/powerpc/platforms/powernv/opal-core.c 	buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf64_Word));
note              313 arch/s390/kernel/crash_dump.c 	Elf64_Nhdr *note;
note              316 arch/s390/kernel/crash_dump.c 	note = (Elf64_Nhdr *)buf;
note              317 arch/s390/kernel/crash_dump.c 	note->n_namesz = strlen(name) + 1;
note              318 arch/s390/kernel/crash_dump.c 	note->n_descsz = d_len;
note              319 arch/s390/kernel/crash_dump.c 	note->n_type = type;
note              322 arch/s390/kernel/crash_dump.c 	memcpy(buf + len, name, note->n_namesz);
note              323 arch/s390/kernel/crash_dump.c 	len = roundup(len + note->n_namesz, 4);
note              325 arch/s390/kernel/crash_dump.c 	memcpy(buf + len, desc, note->n_descsz);
note              326 arch/s390/kernel/crash_dump.c 	len = roundup(len + note->n_descsz, 4);
note              432 arch/s390/kernel/crash_dump.c 	Elf64_Nhdr note;
note              438 arch/s390/kernel/crash_dump.c 	if (copy_oldmem_kernel(&note, addr, sizeof(note)))
note              440 arch/s390/kernel/crash_dump.c 	if (copy_oldmem_kernel(nt_name, addr + sizeof(note),
note              445 arch/s390/kernel/crash_dump.c 	vmcoreinfo = kzalloc(note.n_descsz, GFP_KERNEL);
note              448 arch/s390/kernel/crash_dump.c 	if (copy_oldmem_kernel(vmcoreinfo, addr + 24, note.n_descsz)) {
note              452 arch/s390/kernel/crash_dump.c 	*size = note.n_descsz;
note              500 arch/s390/kernel/crash_dump.c 	Elf64_Nhdr *note;
note              502 arch/s390/kernel/crash_dump.c 	note = (Elf64_Nhdr *) ptr;
note              503 arch/s390/kernel/crash_dump.c 	note->n_namesz = 0;
note              504 arch/s390/kernel/crash_dump.c 	note->n_descsz = 0;
note              505 arch/s390/kernel/crash_dump.c 	note->n_type = 0;
note               52 crypto/ansi_cprng.c static void hexdump(char *note, unsigned char *buf, unsigned int len)
note               55 crypto/ansi_cprng.c 		printk(KERN_CRIT "%s", note);
note               47 drivers/hid/hid-prodikeys.c 	unsigned char		note;
note              214 drivers/hid/hid-prodikeys.c 	unsigned char status, unsigned char note, unsigned char velocity)
note              220 drivers/hid/hid-prodikeys.c 	buffer[1] = note;
note              242 drivers/hid/hid-prodikeys.c 	pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity);
note              340 drivers/hid/hid-prodikeys.c 	unsigned char status, note, velocity;
note              344 drivers/hid/hid-prodikeys.c 		note = data[j*2+1];
note              347 drivers/hid/hid-prodikeys.c 		if (note < 0x81) { /* note on */
note              349 drivers/hid/hid-prodikeys.c 			note = note - 0x54 + PCMIDI_MIDDLE_C +
note              355 drivers/hid/hid-prodikeys.c 			note = note - 0x94 + PCMIDI_MIDDLE_C +
note              363 drivers/hid/hid-prodikeys.c 						pms->note = note;
note              375 drivers/hid/hid-prodikeys.c 		pcmidi_send_note(pm, status, note, velocity);
note              241 drivers/media/pci/saa7134/saa7134-tvaudio.c 			    char *note)
note              253 drivers/media/pci/saa7134/saa7134-tvaudio.c 	if (note)
note              255 drivers/media/pci/saa7134/saa7134-tvaudio.c 			note, audio->name,
note             1165 drivers/net/ethernet/sun/cassini.c 	while ((inst = firmware) && inst->note) {
note             2120 drivers/net/ethernet/sun/cassini.h 	const char *note;
note              255 drivers/pci/hotplug/acpiphp_ibm.c 	struct notification *note = context;
note              261 drivers/pci/hotplug/acpiphp_ibm.c 		acpi_bus_generate_netlink_event(note->device->pnp.device_class,
note              262 drivers/pci/hotplug/acpiphp_ibm.c 						  dev_name(&note->device->dev),
note              263 drivers/pci/hotplug/acpiphp_ibm.c 						  note->event, detail);
note              265 drivers/pci/hotplug/acpiphp_ibm.c 		note->event = event;
note             1924 drivers/scsi/csiostor/csio_lnode.c csio_notify_lnodes(struct csio_hw *hw, enum csio_ln_notify note)
note             1929 drivers/scsi/csiostor/csio_lnode.c 	csio_dbg(hw, "Notifying all nodes of event %d\n", note);
note             1935 drivers/scsi/csiostor/csio_lnode.c 		switch (note) {
note             1459 fs/binfmt_elf.c static void fill_note(struct memelfnote *note, const char *name, int type, 
note             1462 fs/binfmt_elf.c 	note->name = name;
note             1463 fs/binfmt_elf.c 	note->type = type;
note             1464 fs/binfmt_elf.c 	note->datasz = sz;
note             1465 fs/binfmt_elf.c 	note->data = data;
note             1549 fs/binfmt_elf.c static void fill_auxv_note(struct memelfnote *note, struct mm_struct *mm)
note             1556 fs/binfmt_elf.c 	fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv);
note             1559 fs/binfmt_elf.c static void fill_siginfo_note(struct memelfnote *note, user_siginfo_t *csigdata,
note             1566 fs/binfmt_elf.c 	fill_note(note, "CORE", NT_SIGINFO, sizeof(*csigdata), csigdata);
note             1581 fs/binfmt_elf.c static int fill_files_note(struct memelfnote *note)
note             1654 fs/binfmt_elf.c 	fill_note(note, "CORE", NT_FILE, size, data);
note             1328 fs/binfmt_elf_fdpic.c static inline void fill_note(struct memelfnote *note, const char *name, int type,
note             1331 fs/binfmt_elf_fdpic.c 	note->name = name;
note             1332 fs/binfmt_elf_fdpic.c 	note->type = type;
note             1333 fs/binfmt_elf_fdpic.c 	note->datasz = sz;
note             1334 fs/binfmt_elf_fdpic.c 	note->data = data;
note              301 fs/proc/kcore.c 	struct elf_note *note = (struct elf_note *)&notes[*i];
note              303 fs/proc/kcore.c 	note->n_namesz = strlen(name) + 1;
note              304 fs/proc/kcore.c 	note->n_descsz = descsz;
note              305 fs/proc/kcore.c 	note->n_type = type;
note              306 fs/proc/kcore.c 	*i += sizeof(*note);
note              307 fs/proc/kcore.c 	memcpy(&notes[*i], name, note->n_namesz);
note              308 fs/proc/kcore.c 	*i = ALIGN(*i + note->n_namesz, 4);
note              807 include/asm-generic/vmlinux.lds.h 		KEEP(*(.note.*))					\
note               43 include/linux/elfnote.h .pushsection .note.name, flags,@note	;	\
note              164 include/sound/emux_synth.h 	unsigned char note;	/* Note currently assigned to this voice */
note              273 include/sound/opl3.h 	unsigned char note;	/* Note currently assigned to this voice */
note               36 include/sound/seq_midi_emul.h 	unsigned char note[128];	/* Current status for all notes */
note               69 include/sound/seq_midi_emul.h 	void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
note               70 include/sound/seq_midi_emul.h 	void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
note               71 include/sound/seq_midi_emul.h 	void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
note               72 include/sound/seq_midi_emul.h 	void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate note immediately */
note             1128 include/uapi/linux/soundcard.h #define _CHN_VOICE(dev, event, chn, note, parm) \
note             1134 include/uapi/linux/soundcard.h 					_seqbuf[_seqbufptr+4] = (note);\
note             1140 include/uapi/linux/soundcard.h #define SEQ_START_NOTE(dev, chn, note, vol) \
note             1141 include/uapi/linux/soundcard.h 		_CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
note             1143 include/uapi/linux/soundcard.h #define SEQ_STOP_NOTE(dev, chn, note, vol) \
note             1144 include/uapi/linux/soundcard.h 		_CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
note             1146 include/uapi/linux/soundcard.h #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \
note             1147 include/uapi/linux/soundcard.h 		_CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
note              197 include/uapi/sound/asequencer.h 	unsigned char note;
note              286 include/uapi/sound/asequencer.h 		struct snd_seq_ev_note note;
note              298 kernel/crash_core.c 	struct elf_note *note = (struct elf_note *)buf;
note              300 kernel/crash_core.c 	note->n_namesz = strlen(name) + 1;
note              301 kernel/crash_core.c 	note->n_descsz = data_len;
note              302 kernel/crash_core.c 	note->n_type   = type;
note              303 kernel/crash_core.c 	buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word));
note              304 kernel/crash_core.c 	memcpy(buf, name, note->n_namesz);
note              305 kernel/crash_core.c 	buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word));
note              118 security/smack/smack_lsm.c static int smk_bu_note(char *note, struct smack_known *sskp,
note              130 security/smack/smack_lsm.c 		sskp->smk_known, oskp->smk_known, acc, note);
note              134 security/smack/smack_lsm.c #define smk_bu_note(note, sskp, oskp, mode, RC) (RC)
note              138 security/smack/smack_lsm.c static int smk_bu_current(char *note, struct smack_known *oskp,
note              152 security/smack/smack_lsm.c 		acc, current->comm, note);
note              156 security/smack/smack_lsm.c #define smk_bu_current(note, oskp, mode, RC) (RC)
note               49 sound/core/seq/oss/seq_oss_device.h 	int note, vel;
note               28 sound/core/seq/oss/seq_oss_event.c static int note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event *ev);
note               29 sound/core/seq/oss/seq_oss_event.c static int note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event *ev);
note               30 sound/core/seq/oss/seq_oss_event.c static int set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel, struct snd_seq_event *ev);
note               99 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              102 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              110 sound/core/seq/oss/seq_oss_event.c 					 q->n.chn, 0, q->n.note, ev);
note              181 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              184 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              188 sound/core/seq/oss/seq_oss_event.c 				       q->v.chn, q->v.note, q->v.parm, ev);
note              274 sound/core/seq/oss/seq_oss_event.c note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event *ev)
note              286 sound/core/seq/oss/seq_oss_event.c 			return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note              290 sound/core/seq/oss/seq_oss_event.c 		if (note == 255 && info->ch[ch].note >= 0) {
note              304 sound/core/seq/oss/seq_oss_event.c 			return set_note_event(dp, dev, type, ch, info->ch[ch].note, vel, ev);
note              305 sound/core/seq/oss/seq_oss_event.c 		} else if (note >= 128)
note              308 sound/core/seq/oss/seq_oss_event.c 		if (note != info->ch[ch].note && info->ch[ch].note >= 0)
note              310 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              312 sound/core/seq/oss/seq_oss_event.c 		info->ch[ch].note = note;
note              315 sound/core/seq/oss/seq_oss_event.c 			return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note              320 sound/core/seq/oss/seq_oss_event.c 		return set_note_event(dp, dev, SNDRV_SEQ_EVENT_NOTEON, ch, note, vel, ev);
note              323 sound/core/seq/oss/seq_oss_event.c 		if (note >= 128) /* key pressure: shifted by 128 */
note              324 sound/core/seq/oss/seq_oss_event.c 			return set_note_event(dp, dev, SNDRV_SEQ_EVENT_KEYPRESS, ch, note - 128, 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              335 sound/core/seq/oss/seq_oss_event.c note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event *ev)
note              347 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              372 sound/core/seq/oss/seq_oss_event.c set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel, struct snd_seq_event *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               30 sound/core/seq/oss/seq_oss_event.h 	unsigned char note;
note               67 sound/core/seq/oss/seq_oss_event.h 	unsigned char note, parm;
note              566 sound/core/seq/oss/seq_oss_midi.c 		ossev.v.note = ev->data.note.note;
note              567 sound/core/seq/oss/seq_oss_midi.c 		ossev.v.parm = ev->data.note.velocity;
note              568 sound/core/seq/oss/seq_oss_midi.c 		ossev.v.chn = ev->data.note.channel;
note              378 sound/core/seq/oss/seq_oss_synth.c 		info->ch[i].note = -1;
note              892 sound/core/seq/seq_clientmgr.c 			ev->time.tick += ev->data.note.duration;
note              896 sound/core/seq/seq_clientmgr.c 			ev->time.time.tv_nsec += 1000000 * (ev->data.note.duration % 1000);
note              897 sound/core/seq/seq_clientmgr.c 			ev->time.time.tv_sec += ev->data.note.duration / 1000 +
note              902 sound/core/seq/seq_clientmgr.c 		ev->data.note.velocity = ev->data.note.off_velocity;
note               35 sound/core/seq/seq_midi_emul.c 		     int note, int vel);
note               85 sound/core/seq/seq_midi_emul.c 		dest_channel = ev->data.note.channel;
note              102 sound/core/seq/seq_midi_emul.c 	if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0)
note              109 sound/core/seq/seq_midi_emul.c 		if (ev->data.note.note >= 128)
note              115 sound/core/seq/seq_midi_emul.c 		if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) {
note              117 sound/core/seq/seq_midi_emul.c 				ops->note_off(drv, ev->data.note.note, 0, chan);
note              119 sound/core/seq/seq_midi_emul.c 		chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON;
note              121 sound/core/seq/seq_midi_emul.c 			ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan);
note              124 sound/core/seq/seq_midi_emul.c 		if (! (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON))
note              127 sound/core/seq/seq_midi_emul.c 			note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity);
note              131 sound/core/seq/seq_midi_emul.c 			ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan);
note              233 sound/core/seq/seq_midi_emul.c 	 int note, int vel)
note              237 sound/core/seq/seq_midi_emul.c 		chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED;
note              238 sound/core/seq/seq_midi_emul.c 	} else if (chan->note[note] & SNDRV_MIDI_NOTE_SOSTENUTO) {
note              241 sound/core/seq/seq_midi_emul.c 		chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED;
note              243 sound/core/seq/seq_midi_emul.c 		chan->note[note] = 0;
note              245 sound/core/seq/seq_midi_emul.c 			ops->note_off(drv, note, vel, chan);
note              274 sound/core/seq/seq_midi_emul.c 				if (chan->note[i] & SNDRV_MIDI_NOTE_RELEASED) {
note              275 sound/core/seq/seq_midi_emul.c 					chan->note[i] = SNDRV_MIDI_NOTE_OFF;
note              288 sound/core/seq/seq_midi_emul.c 				if (chan->note[i] & SNDRV_MIDI_NOTE_ON)
note              289 sound/core/seq/seq_midi_emul.c 					chan->note[i] |= SNDRV_MIDI_NOTE_SOSTENUTO;
note              294 sound/core/seq/seq_midi_emul.c 				if (chan->note[i] & SNDRV_MIDI_NOTE_SOSTENUTO) {
note              295 sound/core/seq/seq_midi_emul.c 					chan->note[i] &= ~SNDRV_MIDI_NOTE_SOSTENUTO;
note              296 sound/core/seq/seq_midi_emul.c 					if (chan->note[i] & SNDRV_MIDI_NOTE_RELEASED) {
note              297 sound/core/seq/seq_midi_emul.c 						chan->note[i] = SNDRV_MIDI_NOTE_OFF;
note              382 sound/core/seq/seq_midi_emul.c 		memset(chan->note, 0, sizeof(chan->note));
note              594 sound/core/seq/seq_midi_emul.c 		if (chan->note[n]) {
note              596 sound/core/seq/seq_midi_emul.c 			chan->note[n] = 0;
note              612 sound/core/seq/seq_midi_emul.c 		if (chan->note[n] == SNDRV_MIDI_NOTE_ON)
note              247 sound/core/seq/seq_midi_event.c 	ev->data.note.channel = dev->buf[0] & 0x0f;
note              248 sound/core/seq/seq_midi_event.c 	ev->data.note.note = dev->buf[1];
note              249 sound/core/seq/seq_midi_event.c 	ev->data.note.velocity = dev->buf[2];
note              313 sound/core/seq/seq_midi_event.c 		cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f);
note              350 sound/core/seq/seq_midi_event.c 	buf[0] = ev->data.note.note & 0x7f;
note              351 sound/core/seq/seq_midi_event.c 	buf[1] = ev->data.note.velocity & 0x7f;
note              342 sound/core/seq/seq_prioq.c 		if (ev->data.note.channel != info->channel)
note              169 sound/drivers/opl3/opl3_drums.c void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off,
note              178 sound/drivers/opl3/opl3_drums.c 	if ((note < 35) || (note > 81))
note              180 sound/drivers/opl3/opl3_drums.c 	drum_mask = snd_opl3_drum_table[note - 35];
note               14 sound/drivers/opl3/opl3_midi.c static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
note               80 sound/drivers/opl3/opl3_midi.c 				int note, struct snd_midi_channel *chan)
note               82 sound/drivers/opl3/opl3_midi.c 	int block = ((note / 12) & 0x07) - 1;
note               83 sound/drivers/opl3/opl3_midi.c 	int idx = (note % 12) + 2;
note              236 sound/drivers/opl3/opl3_midi.c 				snd_opl3_note_off_unsafe(opl3, vp->note, 0,
note              276 sound/drivers/opl3/opl3_midi.c void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
note              296 sound/drivers/opl3/opl3_midi.c 	int key = note;
note              308 sound/drivers/opl3/opl3_midi.c 		   chan->number, chan->midi_program, note, vel);
note              317 sound/drivers/opl3/opl3_midi.c 			prg = note;
note              335 sound/drivers/opl3/opl3_midi.c 		snd_opl3_drum_switch(opl3, note, vel, 1, chan);
note              523 sound/drivers/opl3/opl3_midi.c 		note = fm->fix_key;
note              528 sound/drivers/opl3/opl3_midi.c 		note += (fm->trnsps - 64);
note              530 sound/drivers/opl3/opl3_midi.c 	snd_opl3_calc_pitch(&fnum, &blocknum, note, chan);
note              562 sound/drivers/opl3/opl3_midi.c 	vp->note = key;
note              570 sound/drivers/opl3/opl3_midi.c 		vp2->note = key;
note              654 sound/drivers/opl3/opl3_midi.c static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
note              666 sound/drivers/opl3/opl3_midi.c 		   chan->number, chan->midi_program, note);
note              671 sound/drivers/opl3/opl3_midi.c 			snd_opl3_drum_switch(opl3, note, vel, 0, chan);
note              678 sound/drivers/opl3/opl3_midi.c 			if (vp->state > 0 && vp->chan == chan && vp->note == note) {
note              691 sound/drivers/opl3/opl3_midi.c void snd_opl3_note_off(void *p, int note, int vel,
note              698 sound/drivers/opl3/opl3_midi.c 	snd_opl3_note_off_unsafe(p, note, vel, chan);
note              705 sound/drivers/opl3/opl3_midi.c void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan)
note              716 sound/drivers/opl3/opl3_midi.c void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan)
note              751 sound/drivers/opl3/opl3_midi.c 	snd_opl3_calc_pitch(&fnum, &blocknum, vp->note, vp->chan);
note               60 sound/drivers/opl3/opl3_synth.c static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note);
note              113 sound/drivers/opl3/opl3_synth.c 			struct snd_dm_fm_note note;
note              114 sound/drivers/opl3/opl3_synth.c 			if (copy_from_user(&note, argp, sizeof(struct snd_dm_fm_note)))
note              116 sound/drivers/opl3/opl3_synth.c 			return snd_opl3_play_note(opl3, &note);
note              388 sound/drivers/opl3/opl3_synth.c static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note)
note              398 sound/drivers/opl3/opl3_synth.c 	if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ?
note              403 sound/drivers/opl3/opl3_synth.c 	if (note->voice < MAX_OPL2_VOICES) {
note              406 sound/drivers/opl3/opl3_synth.c 		voice_offset = note->voice;
note              410 sound/drivers/opl3/opl3_synth.c 		voice_offset = note->voice - MAX_OPL2_VOICES;
note              414 sound/drivers/opl3/opl3_synth.c 	reg_val = (unsigned char) note->fnum;
note              420 sound/drivers/opl3/opl3_synth.c 	if (note->key_on)
note              423 sound/drivers/opl3/opl3_synth.c 	reg_val |= (note->octave << 2) & OPL3_BLOCKNUM_MASK;
note              425 sound/drivers/opl3/opl3_synth.c 	reg_val |= (unsigned char) (note->fnum >> 8) & OPL3_FNUM_HIGH_MASK;
note               18 sound/drivers/opl3/opl3_voice.h void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
note               19 sound/drivers/opl3/opl3_voice.h void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
note               20 sound/drivers/opl3/opl3_voice.h void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan);
note               21 sound/drivers/opl3/opl3_voice.h void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan);
note               31 sound/drivers/opl3/opl3_voice.h void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, struct snd_midi_channel *chan);
note              163 sound/drivers/opl4/opl4_local.h 	int note;
note              225 sound/drivers/opl4/opl4_local.h void snd_opl4_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
note              226 sound/drivers/opl4/opl4_local.h void snd_opl4_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
note              227 sound/drivers/opl4/opl4_local.h void snd_opl4_terminate_note(void *p, int note, struct snd_midi_channel *chan);
note              312 sound/drivers/opl4/opl4_synth.c static void snd_opl4_do_for_note(struct snd_opl4 *opl4, int note, struct snd_midi_channel *chan,
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              482 sound/drivers/opl4/opl4_synth.c void snd_opl4_note_on(void *private_data, int note, int vel, struct snd_midi_channel *chan)
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              509 sound/drivers/opl4/opl4_synth.c 		voice[i]->note = note;
note              563 sound/drivers/opl4/opl4_synth.c void snd_opl4_note_off(void *private_data, int note, int vel, struct snd_midi_channel *chan)
note              567 sound/drivers/opl4/opl4_synth.c 	snd_opl4_do_for_note(opl4, note, chan, snd_opl4_voice_off);
note              578 sound/drivers/opl4/opl4_synth.c void snd_opl4_terminate_note(void *private_data, int note, struct snd_midi_channel *chan)
note              582 sound/drivers/opl4/opl4_synth.c 	snd_opl4_do_for_note(opl4, note, chan, snd_opl4_terminate_voice);
note               30 sound/synth/emux/emux_synth.c static void terminate_note1(struct snd_emux *emu, int note,
note               46 sound/synth/emux/emux_synth.c snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
note               63 sound/synth/emux/emux_synth.c 	key = note; /* remember the original note */
note               64 sound/synth/emux/emux_synth.c 	nvoices = get_zone(emu, port, &note, vel, chan, table);
note               99 sound/synth/emux/emux_synth.c 		vp->note = note;
note              145 sound/synth/emux/emux_synth.c snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan)
note              165 sound/synth/emux/emux_synth.c 		    vp->chan == chan && vp->key == note) {
note              222 sound/synth/emux/emux_synth.c snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan)
note              242 sound/synth/emux/emux_synth.c 		    vp->chan == chan && vp->key == note) {
note              364 sound/synth/emux/emux_synth.c terminate_note1(struct snd_emux *emu, int note, struct snd_midi_channel *chan, int free)
note              374 sound/synth/emux/emux_synth.c 		    vp->key == note)
note              385 sound/synth/emux/emux_synth.c snd_emux_terminate_note(void *p, int note, struct snd_midi_channel *chan)
note              398 sound/synth/emux/emux_synth.c 	terminate_note1(emu, note, chan, 1);
note              820 sound/synth/emux/emux_synth.c 		offset = (vp->note - vp->reg.root) * 4096 / 12;
note               34 sound/synth/emux/emux_voice.h void snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
note               35 sound/synth/emux/emux_voice.h void snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
note               36 sound/synth/emux/emux_voice.h void snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan);
note               37 sound/synth/emux/emux_voice.h void snd_emux_terminate_note(void *p, int note, struct snd_midi_channel *chan);
note              945 sound/synth/emux/soundfont.c 	int note, sample_id;
note             1024 sound/synth/emux/soundfont.c 	note = freq_to_note(patch.base_note);
note             1025 sound/synth/emux/soundfont.c 	zone->v.root = note / 100;
note             1026 sound/synth/emux/soundfont.c 	zone->v.tune = -(note % 100);
note              106 tools/perf/util/genelf.c gen_build_id(struct buildid_note *note,
note              112 tools/perf/util/genelf.c 	size_t sz = sizeof(note->build_id);
note              119 tools/perf/util/genelf.c 	sret = read(fd, note->build_id, sz);
note              124 tools/perf/util/genelf.c 		memset(note->build_id, 0, sz);
note              130 tools/perf/util/genelf.c gen_build_id(struct buildid_note *note,
note              135 tools/perf/util/genelf.c 	if (sizeof(note->build_id) < SHA_DIGEST_LENGTH)
note              138 tools/perf/util/genelf.c 	SHA1(code, csize, (unsigned char *)note->build_id);
note              144 tools/perf/util/genelf.c gen_build_id(struct buildid_note *note, unsigned long load_addr, const void *code, size_t csize)
note              148 tools/perf/util/genelf.c 	if (sizeof(note->build_id) < 16)
note              154 tools/perf/util/genelf.c 	MD5_Final((unsigned char *)note->build_id, &context);
note              692 tools/perf/util/probe-file.c static unsigned long long sdt_note__get_addr(struct sdt_note *note)
note              694 tools/perf/util/probe-file.c 	return note->bit32 ?
note              695 tools/perf/util/probe-file.c 		(unsigned long long)note->addr.a32[SDT_NOTE_IDX_LOC] :
note              696 tools/perf/util/probe-file.c 		(unsigned long long)note->addr.a64[SDT_NOTE_IDX_LOC];
note              699 tools/perf/util/probe-file.c static unsigned long long sdt_note__get_ref_ctr_offset(struct sdt_note *note)
note              701 tools/perf/util/probe-file.c 	return note->bit32 ?
note              702 tools/perf/util/probe-file.c 		(unsigned long long)note->addr.a32[SDT_NOTE_IDX_REFCTR] :
note              703 tools/perf/util/probe-file.c 		(unsigned long long)note->addr.a64[SDT_NOTE_IDX_REFCTR];
note              775 tools/perf/util/probe-file.c static char *synthesize_sdt_probe_command(struct sdt_note *note,
note              788 tools/perf/util/probe-file.c 			sdtgrp, note->name, pathname,
note              789 tools/perf/util/probe-file.c 			sdt_note__get_addr(note));
note              791 tools/perf/util/probe-file.c 	ref_ctr_offset = sdt_note__get_ref_ctr_offset(note);
note              798 tools/perf/util/probe-file.c 	if (!note->args)
note              801 tools/perf/util/probe-file.c 	if (note->args) {
note              802 tools/perf/util/probe-file.c 		args = argv_split(note->args, &args_count);
note              821 tools/perf/util/probe-file.c 	struct sdt_note *note;
note              832 tools/perf/util/probe-file.c 	list_for_each_entry(note, &sdtlist, note_list) {
note              833 tools/perf/util/probe-file.c 		ret = snprintf(sdtgrp, 64, "sdt_%s", note->provider);
note              837 tools/perf/util/probe-file.c 		entry = probe_cache__find_by_name(pcache, sdtgrp, note->name);
note              846 tools/perf/util/probe-file.c 					note->name, note->name);
note              849 tools/perf/util/probe-file.c 			entry->pev.event = strdup(note->name);
note              853 tools/perf/util/probe-file.c 		buf = synthesize_sdt_probe_command(note, pathname, sdtgrp);
note              202 tools/testing/selftests/powerpc/ptrace/core-pkey.c 	void *p = ehdr, *note;
note              242 tools/testing/selftests/powerpc/ptrace/core-pkey.c 	note = p + sizeof(*nhdr) + __ALIGN_KERNEL(nhdr->n_namesz, 4);
note              244 tools/testing/selftests/powerpc/ptrace/core-pkey.c 	regs = (unsigned long *) note;