Home
last modified time | relevance | path

Searched refs:note (Results 1 – 200 of 413) sorted by relevance

123

/linux-4.1.27/sound/core/seq/
Dseq_midi_emul.c49 int note, int vel);
99 dest_channel = ev->data.note.channel; in snd_midi_process_event()
116 if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) in snd_midi_process_event()
123 if (ev->data.note.note >= 128) in snd_midi_process_event()
129 if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) { in snd_midi_process_event()
131 ops->note_off(drv, ev->data.note.note, 0, chan); in snd_midi_process_event()
133 chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON; in snd_midi_process_event()
135 ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event()
138 if (! (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON)) in snd_midi_process_event()
141 note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity); in snd_midi_process_event()
[all …]
Dseq_midi_event.c314 ev->data.note.channel = dev->buf[0] & 0x0f; in note_event()
315 ev->data.note.note = dev->buf[1]; in note_event()
316 ev->data.note.velocity = dev->buf[2]; in note_event()
380 cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f); in snd_midi_event_decode()
416 buf[0] = ev->data.note.note & 0x7f; in note_decode()
417 buf[1] = ev->data.note.velocity & 0x7f; in note_decode()
Dseq_prioq.c357 if (ev->data.note.channel != info->channel) in prioq_remove_match()
Dseq_clientmgr.c884 ev->time.tick += ev->data.note.duration; in snd_seq_dispatch_event()
888 ev->time.time.tv_nsec += 1000000 * (ev->data.note.duration % 1000); in snd_seq_dispatch_event()
889 ev->time.time.tv_sec += ev->data.note.duration / 1000 + in snd_seq_dispatch_event()
894 ev->data.note.velocity = ev->data.note.off_velocity; in snd_seq_dispatch_event()
/linux-4.1.27/sound/core/seq/oss/
Dseq_oss_event.c40 static int note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd…
41 static int note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct sn…
42 static int set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel,…
111 return note_off_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event()
114 return note_on_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event()
122 q->n.chn, 0, q->n.note, ev); in old_event()
193 return note_on_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event()
196 return note_off_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event()
200 q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event()
286 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 …]
Dseq_oss_event.h43 unsigned char note; member
80 unsigned char note, parm; member
Dseq_oss_midi.c577 ossev.v.note = ev->data.note.note; in send_synth_event()
578 ossev.v.parm = ev->data.note.velocity; in send_synth_event()
579 ossev.v.chn = ev->data.note.channel; in send_synth_event()
Dseq_oss_device.h61 int note, vel; member
/linux-4.1.27/Documentation/ABI/testing/
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
Dsysfs-driver-hid-prodikeys16 note held by the pc-midi driver.
Dsysfs-devices-system-cpu197 Description: address and size of the percpu note.
200 note of cpu#.
202 crash_notes_size: size of the note of cpu#.
Dsysfs-platform-msi-laptop30 note that this file is constantly 0 if no Bluetooth hardware is
Dsysfs-platform-dell-laptop67 Also note that only some timeouts are supported and that
/linux-4.1.27/arch/s390/kernel/
Dcrash_dump.c291 Elf64_Nhdr *note; in nt_init() local
294 note = (Elf64_Nhdr *)buf; in nt_init()
295 note->n_namesz = strlen(name) + 1; in nt_init()
296 note->n_descsz = d_len; in nt_init()
297 note->n_type = type; in nt_init()
300 memcpy(buf + len, name, note->n_namesz); in nt_init()
301 len = roundup(len + note->n_namesz, 4); in nt_init()
303 memcpy(buf + len, desc, note->n_descsz); in nt_init()
304 len = roundup(len + note->n_descsz, 4); in nt_init()
402 Elf64_Nhdr *note; in nt_s390_vx_low() local
[all …]
Dvmlinux.lds.S17 note PT_NOTE FLAGS(0); /* ___ */
37 NOTES :text :note
/linux-4.1.27/sound/drivers/opl3/
Dopl3_midi.c32 static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
98 int note, struct snd_midi_channel *chan) in snd_opl3_calc_pitch() argument
100 int block = ((note / 12) & 0x07) - 1; in snd_opl3_calc_pitch()
101 int idx = (note % 12) + 2; in snd_opl3_calc_pitch()
254 snd_opl3_note_off_unsafe(opl3, vp->note, 0, in snd_opl3_timer_func()
294 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_opl3_note_on() argument
314 int key = note; in snd_opl3_note_on()
326 chan->number, chan->midi_program, note, vel); in snd_opl3_note_on()
335 prg = note; in snd_opl3_note_on()
353 snd_opl3_drum_switch(opl3, note, vel, 1, chan); in snd_opl3_note_on()
[all …]
Dopl3_voice.h31 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
32 void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
33 void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan);
34 void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan);
44 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int on_off, int vel, struct snd_midi_cha…
Dopl3_synth.c72 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note);
125 struct snd_dm_fm_note note; in snd_opl3_ioctl() local
126 if (copy_from_user(&note, argp, sizeof(struct snd_dm_fm_note))) in snd_opl3_ioctl()
128 return snd_opl3_play_note(opl3, &note); in snd_opl3_ioctl()
400 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note) in snd_opl3_play_note() argument
410 if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ? in snd_opl3_play_note()
415 if (note->voice < MAX_OPL2_VOICES) { in snd_opl3_play_note()
418 voice_offset = note->voice; in snd_opl3_play_note()
422 voice_offset = note->voice - MAX_OPL2_VOICES; in snd_opl3_play_note()
426 reg_val = (unsigned char) note->fnum; in snd_opl3_play_note()
[all …]
Dopl3_drums.c185 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, in snd_opl3_drum_switch() argument
194 if ((note < 35) || (note > 81)) in snd_opl3_drum_switch()
196 drum_mask = snd_opl3_drum_table[note - 35]; in snd_opl3_drum_switch()
/linux-4.1.27/arch/arm/vdso/
Dvdso.lds.S45 .note : { *(.note.*) } :text :note
61 *(.note.GNU-stack)
75 note PT_NOTE FLAGS(4); /* PF_R */
/linux-4.1.27/sound/drivers/opl4/
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 …]
Dopl4_local.h163 int note; member
222 void snd_opl4_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
223 void snd_opl4_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
224 void snd_opl4_terminate_note(void *p, int note, struct snd_midi_channel *chan);
/linux-4.1.27/arch/arm64/kernel/vdso/
Dvdso.lds.S42 .note : { *(.note.*) } :text :note
62 *(.note.GNU-stack)
76 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile8 obj-vdso := gettimeofday.o note.o sigreturn.o
/linux-4.1.27/arch/alpha/kernel/
Dvmlinux.lds.S10 PHDRS { kernel PT_LOAD; note PT_NOTE; }
32 NOTES :kernel :note
69 .note 0 : {
70 *(.note)
/linux-4.1.27/arch/ia64/kernel/
Dcrash.c34 struct elf_note *note = (struct elf_note *)buf; in append_elf_note() local
35 note->n_namesz = strlen(name) + 1; in append_elf_note()
36 note->n_descsz = data_len; in append_elf_note()
37 note->n_type = type; in append_elf_note()
38 buf += (sizeof(*note) + 3)/4; in append_elf_note()
39 memcpy(buf, name, note->n_namesz); in append_elf_note()
40 buf += (note->n_namesz + 3)/4; in append_elf_note()
Dgate.lds.S23 .note : { *(.note*) } :readable :note
88 note PT_NOTE FLAGS(4); /* PF_R */
Dvmlinux.lds.S17 note PT_NOTE;
30 *(.note)
68 NOTES :code :note /* put .notes in text and mark in PT_NOTE */
/linux-4.1.27/arch/x86/um/vdso/
Dvdso-layout.lds.S19 .note : { *(.note.*) } :text :note
62 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile11 vobjs-y := vdso-note.o um_vdso.o
49 CFLAGS_REMOVE_vdso-note.o = -pg -fprofile-arcs -ftest-coverage
/linux-4.1.27/arch/tile/kernel/vdso/
Dvdso.lds.S36 .note : { *(.note.*) } :text :note
70 note PT_NOTE FLAGS(4); /* PF_R */
/linux-4.1.27/arch/sh/kernel/vsyscall/
Dvsyscall.lds.S39 .note : { *(.note.*) } :text :note
67 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile8 targets += vsyscall-note.o vsyscall.lds
35 $(obj)/vsyscall-trapa.o $(obj)/vsyscall-note.o FORCE
/linux-4.1.27/Documentation/networking/
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
Dsmc9.txt11 Things to note about installation:
Dalias.txt21 Please note: The route always points to the base interface.
Dswitchdev.txt4 Please note that the word "switch" is here used in very generic meaning.
Dnetdev-FAQ.txt81 and note the top of the "tags" section. If it is rc1, it is early
93 bug-fix net content. If you don't use git, then note the only magic in
145 Before you jump to go do the above, do note that the normal stable rules
Dvortex.txt18 Please note the 'Reporting and Diagnosing Problems' section at the end
318 Cisco interoperability note from Walter Wong <wcw+@CMU.EDU>:
320 On a side note, adding HAS_NWAY seems to share a problem with the
/linux-4.1.27/sound/oss/
Dmidi_synth.c283 midi_synth_kill_note(int dev, int channel, int note, int velocity) in midi_synth_kill_note() argument
288 if (note < 0 || note > 127) in midi_synth_kill_note()
306 if (!prefix_cmd(orig_dev, note)) in midi_synth_kill_note()
309 midi_outc(orig_dev, note); in midi_synth_kill_note()
329 midi_outc(orig_dev, note); in midi_synth_kill_note()
340 midi_outc(orig_dev, note); in midi_synth_kill_note()
373 midi_synth_start_note(int dev, int channel, int note, int velocity) in midi_synth_start_note() argument
378 if (note < 0 || note > 127) in midi_synth_start_note()
396 if (!prefix_cmd(orig_dev, note)) in midi_synth_start_note()
398 midi_outc(orig_dev, note); in midi_synth_start_note()
[all …]
Dsequencer.c76 static int seq_queue(unsigned char *note, char nonblock);
327 static int seq_queue(unsigned char *note, char nonblock) in seq_queue() argument
352 memcpy(&queue[qtail * EV_SZ], note, EV_SZ); in seq_queue()
415 static int find_voice(int dev, int chn, int note) in find_voice() argument
420 key = (chn << 8) | (note + 1); in find_voice()
427 static int alloc_voice(int dev, int chn, int note) in alloc_voice() argument
432 key = (chn << 8) | (note + 1); in alloc_voice()
434 voice = synth_devs[dev]->alloc_voice(dev, chn, note, in alloc_voice()
447 #define note event_rec[4] in seq_chn_voice_event() macro
462 voice = find_voice(dev, chn, note); in seq_chn_voice_event()
[all …]
Dmidi_synth.h3 int midi_synth_kill_note (int dev, int channel, int note, int velocity);
5 int midi_synth_start_note (int dev, int channel, int note, int volume);
Ddev_table.h268 int (*kill_note) (int dev, int voice, int note, int velocity);
269 int (*start_note) (int dev, int voice, int note, int velocity);
280 int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
Dopl3.c85 static int opl3_kill_note(int dev, int voice, int note, int velocity);
268 static int opl3_kill_note (int devno, int voice, int note, int velocity) in opl3_kill_note() argument
457 static int opl3_start_note (int dev, int voice, int note, int volume) in opl3_start_note() argument
473 if (note == 255) /* in opl3_start_note()
647 freq = devc->voc[voice].orig_freq = note_to_freq(note) / 1000; in opl3_start_note()
998 static int opl3_alloc_voice(int dev, int chn, int note, struct voice_alloc_info *alloc) in opl3_alloc_voice() argument
/linux-4.1.27/arch/s390/kernel/vdso32/
Dvdso32.lds.S23 .note : { *(.note.*) } :text :note
98 *(.note.GNU-stack)
118 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile3 obj-vdso32 = gettimeofday.o clock_getres.o clock_gettime.o note.o
/linux-4.1.27/arch/s390/kernel/vdso64/
Dvdso64.lds.S23 .note : { *(.note.*) } :text :note
98 *(.note.GNU-stack)
118 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile3 obj-vdso64 = gettimeofday.o clock_getres.o clock_gettime.o note.o
/linux-4.1.27/arch/x86/vdso/
Dvdso-layout.lds.S75 .note : { *(.note.*) } :text :note
116 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile14 vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o
79 CFLAGS_REMOVE_vdso-note.o = -pg
142 targets += vdso32/note.o vdso32/vclock_gettime.o $(vdso32.so-y:%=vdso32/%.o)
165 $(obj)/vdso32/note.o \
/linux-4.1.27/arch/powerpc/kernel/vdso32/
Dvdso32.lds.S27 .note : { *(.note.*) } :text :note
110 *(.note.GNU-stack)
129 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile5 obj-vdso32 = sigtramp.o gettimeofday.o datapage.o cacheflush.o note.o \
/linux-4.1.27/arch/powerpc/kernel/vdso64/
Dvdso64.lds.S27 .note : { *(.note.*) } :text :note
109 *(.note.GNU-stack)
129 note PT_NOTE FLAGS(4); /* PF_R */
DMakefile3 obj-vdso64 = sigtramp.o gettimeofday.o datapage.o cacheflush.o note.o getcpu.o
/linux-4.1.27/include/sound/
Dseq_midi_emul.h50 unsigned char note[128]; /* Current status for all notes */ member
83 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
84 …void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release …
85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
86 …void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate …
Demux_synth.h179 unsigned char note; /* Note currently assigned to this voice */ member
Dopl3.h291 unsigned char note; /* Note currently assigned to this voice */ member
/linux-4.1.27/Documentation/RCU/
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 …]
Drculist_nulls.txt47 And note the traditional hlist_for_each_entry_rcu() misses this smp_rmb() :
80 * Please note that new inserts are done at the head of list,
157 * Please note that new inserts are done at the head of list,
Drcuref.txt4 Please note that the percpu-ref feature is likely your first
Dstallwarn.txt85 will normally be followed by stack dumps for each CPU. Please note that
100 interact. Please note that it is not possible to entirely eliminate this
236 warning. Note that SRCU does -not- have CPU stall warnings. Please note
DNMI-RCU.txt97 Important note: for this to work, the architecture in question must
/linux-4.1.27/sound/synth/emux/
Demux_voice.h47 void snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan);
48 void snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan);
49 void snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan);
50 void snd_emux_terminate_note(void *p, int note, struct snd_midi_channel *chan);
Demux_synth.c44 static void terminate_note1(struct snd_emux *emu, int note,
60 snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_note_on() argument
77 key = note; /* remember the original note */ in snd_emux_note_on()
78 nvoices = get_zone(emu, port, &note, vel, chan, table); in snd_emux_note_on()
113 vp->note = note; in snd_emux_note_on()
159 snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_note_off() argument
179 vp->chan == chan && vp->key == note) { in snd_emux_note_off()
236 snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_key_press() argument
256 vp->chan == chan && vp->key == note) { in snd_emux_key_press()
378 terminate_note1(struct snd_emux *emu, int note, struct snd_midi_channel *chan, int free) in terminate_note1() argument
[all …]
Dsoundfont.c956 int note, sample_id; in load_guspatch() local
1035 note = freq_to_note(patch.base_note); in load_guspatch()
1036 zone->v.root = note / 100; in load_guspatch()
1037 zone->v.tune = -(note % 100); in load_guspatch()
/linux-4.1.27/drivers/hid/
Dhid-prodikeys.c51 unsigned char note; member
218 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument
224 buffer[1] = note; in pcmidi_send_note()
246 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release()
345 unsigned char status, note, velocity; in pcmidi_handle_report3() local
349 note = data[j*2+1]; in pcmidi_handle_report3()
352 if (note < 0x81) { /* note on */ in pcmidi_handle_report3()
354 note = note - 0x54 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
360 note = note - 0x94 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
368 pms->note = note; in pcmidi_handle_report3()
[all …]
/linux-4.1.27/arch/ia64/scripts/
Dcheck-segrel.lds4 .note : { *(.note*) }
/linux-4.1.27/arch/powerpc/kernel/
Dfadump.c487 struct elf_note note; in fadump_append_elf_note() local
489 note.n_namesz = strlen(name) + 1; in fadump_append_elf_note()
490 note.n_descsz = data_len; in fadump_append_elf_note()
491 note.n_type = type; in fadump_append_elf_note()
492 memcpy(buf, &note, sizeof(note)); in fadump_append_elf_note()
493 buf += (sizeof(note) + 3)/4; in fadump_append_elf_note()
494 memcpy(buf, name, note.n_namesz); in fadump_append_elf_note()
495 buf += (note.n_namesz + 3)/4; in fadump_append_elf_note()
496 memcpy(buf, data, note.n_descsz); in fadump_append_elf_note()
497 buf += (note.n_descsz + 3)/4; in fadump_append_elf_note()
[all …]
/linux-4.1.27/arch/alpha/boot/
Dbootloader.lds22 .note 0 : { *(.note) }
/linux-4.1.27/arch/cris/boot/
DMakefile5 objcopyflags-$(CONFIG_ETRAX_ARCH_V10) += -R .note -R .comment
6 objcopyflags-$(CONFIG_ETRAX_ARCH_V32) += --remove-section=.bss --remove-section=.note.gnu.build-id
/linux-4.1.27/Documentation/fmc/
DAPI.txt23 The data structure that describe a device is detailed in *note FMC
24 Device::, the one that describes a driver is detailed in *note FMC
25 Driver::. Please note that structures of type fmc_device must be
42 *note The API Offered by Carriers:: and also scans the memory area for
Dfmc-write-eeprom.txt14 write-support through sysfs. See *note Accessing the EEPROM::.
52 Please note that you'll most likely want to use SDBFS to build your
58 fmc-fakedev.ko module (see *note fmc-fakedev::). Whenever you change
60 after two seconds. Please note, however, that if fmc-write-eeprom is
97 fmc-write-eeprom (See *note fmc-write-eeprom::), but the procedure is
Dcarrier.txt21 Please note that all the machinery is in place but some details may
91 Please note that the carrier should read its own EEPROM memory before
168 index in the associated array. See *note Module Parameters:: in in
173 this way). Such "generic parameters" are documented in *note
175 `fmc-trivial.ko', described in *note fmc-trivial::.
185 the `gateware=' parameter, see *note Module Parameters::. Note:
202 its current value if it is configured as input. See *note The GPIO
Dmezzanine.txt31 (see *note The GPIO Abstraction::), although the name match is not
47 vendor) and the device (see *note FMC Identification::); for
122 Please note that not all sub-modules support all of those parameters.
DFMC-and-SDB.txt68 SDB support for FMC is described in *note FMC Identification:: and
69 *note SDB Support::
Dfmc-fakedev.txt12 described in *note FMC Identification::),, which by default is
/linux-4.1.27/arch/arc/boot/
DMakefile7 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
/linux-4.1.27/arch/unicore32/
DMakefile21 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment -S
/linux-4.1.27/arch/microblaze/boot/
DMakefile7 OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
/linux-4.1.27/include/linux/
Delfnote.h42 .pushsection .note.name, flags,@note ; \
/linux-4.1.27/arch/frv/boot/
DMakefile20 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment
/linux-4.1.27/arch/um/include/asm/
Dcommon.lds.S18 .note : { *(.note.*) }
/linux-4.1.27/arch/parisc/kernel/
Dvmlinux.lds.S143 .note 0 : { *(.note) }
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-ocores.txt7 - clocks : handle to the controller clock; see the note below.
10 see the note below. Mutually exclusive with clocks
15 - clock-frequency : frequency of bus clock in Hz; see the note below.
/linux-4.1.27/drivers/pci/hotplug/
Dacpiphp_ibm.c256 struct notification *note = context; in ibm_handle_events() local
262 acpi_bus_generate_netlink_event(note->device->pnp.device_class, in ibm_handle_events()
263 dev_name(&note->device->dev), in ibm_handle_events()
264 note->event, detail); in ibm_handle_events()
266 note->event = event; in ibm_handle_events()
/linux-4.1.27/arch/mips/kernel/
Dvmlinux.lds.S20 note PT_NOTE FLAGS(4); /* R__ */
74 NOTES :text :note
/linux-4.1.27/arch/sparc/boot/
DMakefile18 cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start $< -o $@
42 OBJCOPYFLAGS_image.bin := -S -O binary -R .note -R .comment
/linux-4.1.27/include/uapi/linux/
Dsoundcard.h1128 #define _CHN_VOICE(dev, event, chn, note, parm) \ argument
1134 _seqbuf[_seqbufptr+4] = (note);\
1140 #define SEQ_START_NOTE(dev, chn, note, vol) \ argument
1141 _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
1143 #define SEQ_STOP_NOTE(dev, chn, note, vol) \ argument
1144 _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
1146 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ argument
1147 _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
/linux-4.1.27/Documentation/hwmon/
Dsch563632 An application note describing the Theseus' registers, as well as an
33 application note describing the protocol for communicating with the
Dltc424575 in9_input GPIO voltage data (see note 1)
76 in10_input GPIO voltage data (see note 1)
77 in11_input GPIO voltage data (see note 1)
Dsch562725 through an embedded microcontroller. An application note describing the
Duserspace-tools20 Get lm-sensors from project web site. Please note, you need only userspace
Dk8temp21 Please note that you will need at least lm-sensors 2.10.1 for proper userspace
Dadm102540 register can be used to define how the chip is hardwired. Please note that
Dk10temp63 Please note that it is defined as a relative value; to quote the AMD manual:
/linux-4.1.27/arch/arm64/
DMakefile15 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
DKconfig307 Please note that this does not necessarily enable the workaround,
328 Please note that this does not necessarily enable the workaround,
350 Please note that this option does not necessarily enable the
371 Please note that this does not necessarily enable the workaround,
389 Please note that this does not necessarily enable the workaround,
410 Please note that this does not necessarily enable the workaround,
/linux-4.1.27/arch/mn10300/
DMakefile22 OBJCOPYFLAGS := -O binary -R .note -R .comment -R .GCC-command-line -R .note.gnu.build-id -S
/linux-4.1.27/kernel/
Dkexec.c1558 struct elf_note note; in append_elf_note() local
1560 note.n_namesz = strlen(name) + 1; in append_elf_note()
1561 note.n_descsz = data_len; in append_elf_note()
1562 note.n_type = type; in append_elf_note()
1563 memcpy(buf, &note, sizeof(note)); in append_elf_note()
1564 buf += (sizeof(note) + 3)/4; in append_elf_note()
1565 memcpy(buf, name, note.n_namesz); in append_elf_note()
1566 buf += (note.n_namesz + 3)/4; in append_elf_note()
1567 memcpy(buf, data, note.n_descsz); in append_elf_note()
1568 buf += (note.n_descsz + 3)/4; in append_elf_note()
[all …]
/linux-4.1.27/tools/perf/bench/
Dmem-memcpy-x86-64-asm.S10 .section .note.GNU-stack,"",@progbits
Dmem-memset-x86-64-asm.S11 .section .note.GNU-stack,"",@progbits
/linux-4.1.27/Documentation/sound/alsa/
Dhdspm.txt331 note: ALSA-standard
336 note: ALSA-standard
341 note: ALSA-standard
346 note: Use only when the application supports this (which is a special case).
352 note: each playback channel is mixed to the same numbered output
362 note: here the analog output is enabled (but not routed).
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
DKconfig10 ath6kl_core. Please note that AR6002 and AR6001 are not
21 Please note that AR6002 and AR6001 are not supported by this
/linux-4.1.27/Documentation/w1/masters/
Domap-hdq40 Please note to load both the modules with a different ID if required, but note
/linux-4.1.27/arch/x86/realmode/rm/
Drealmode.lds.S70 *(.note*)
/linux-4.1.27/arch/x86/kernel/
Dvmlinux.lds.S79 note PT_NOTE FLAGS(0); /* ___ */
111 NOTES :text :note
/linux-4.1.27/Documentation/
Dkselftest.txt27 - note that some tests will require root privileges.
54 - note that some tests will require root privileges.
Dbraille-console.txt29 console=brl,... will be discarded. Also note that it does not interfere with
Dkref.txt296 But note that the struct kref member needs to remain in valid memory for a
299 before using kfree, but note that synchronize_rcu() may sleep for a
Dsparse.txt38 One small note: the constant integer "0" is special. You can use a
Dmailbox.txt5 drivers for the API. But before we start, let us note that the
/linux-4.1.27/arch/mips/boot/compressed/
Dld.script51 *(.note)
/linux-4.1.27/arch/openrisc/
DMakefile23 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/arch/xtensa/boot/
DMakefile34 OBJCOPYFLAGS = --strip-all -R .comment -R .note.gnu.build-id -O binary
/linux-4.1.27/arch/x86/boot/
Dsetup.ld54 /DISCARD/ : { *(.note*) }
DMakefile74 OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
/linux-4.1.27/drivers/net/wireless/b43legacy/
DKconfig98 Please note that PIO transfers are slow (compared to DMA).
100 Also note that not all devices of the b43legacy series support PIO.
/linux-4.1.27/Documentation/sound/oss/
DTropez+16 Things to note:
Dultrasound15 no_wave_dma Set to disable DMA usage for wavetable (see note)
/linux-4.1.27/arch/m32r/
DMakefile11 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/Documentation/isdn/
DREADME.FAQ5 Please note that there is a big FAQ available in the isdn4k-utils.
DHiSax.cert15 However, if you wish to modify the HiSax sources, please note the following:
76 If you wish to change the sources, go ahead; but note that then the
/linux-4.1.27/include/uapi/sound/
Dasequencer.h196 unsigned char note; member
285 struct snd_seq_ev_note note; member
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Dwm8962.txt21 performed. And note that only the value within [0x0, 0xffff] is valid.
/linux-4.1.27/arch/metag/
DMakefile17 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/net/wimax/
DKconfig14 Please note that most of these devices require signing up
/linux-4.1.27/fs/
Dbinfmt_elf.c1379 static void fill_note(struct memelfnote *note, const char *name, int type, in fill_note() argument
1382 note->name = name; in fill_note()
1383 note->type = type; in fill_note()
1384 note->datasz = sz; in fill_note()
1385 note->data = data; in fill_note()
1469 static void fill_auxv_note(struct memelfnote *note, struct mm_struct *mm) in fill_auxv_note() argument
1476 fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv); in fill_auxv_note()
1479 static void fill_siginfo_note(struct memelfnote *note, user_siginfo_t *csigdata, in fill_siginfo_note() argument
1486 fill_note(note, "CORE", NT_SIGINFO, sizeof(*csigdata), csigdata); in fill_siginfo_note()
1501 static int fill_files_note(struct memelfnote *note) in fill_files_note() argument
[all …]
Dbinfmt_elf_fdpic.c1312 static inline void fill_note(struct memelfnote *note, const char *name, int type, in fill_note() argument
1315 note->name = name; in fill_note()
1316 note->type = type; in fill_note()
1317 note->datasz = sz; in fill_note()
1318 note->data = data; in fill_note()
/linux-4.1.27/fs/befs/
DKconfig9 attributes. (Also note that this driver doesn't make those features
/linux-4.1.27/arch/avr32/boot/images/
DMakefile11 OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note.gnu.build-id
/linux-4.1.27/drivers/mtd/spi-nor/
DKconfig21 Please note that some tools/drivers/filesystems may not work with
/linux-4.1.27/Documentation/ko_KR/
Dstable_api_nonsense.txt8 Please also note that the purpose of this file is to be easier to
DHOWTO7 Please also note that the purpose of this file is to be easier to
/linux-4.1.27/Documentation/s390/
Dkvm.txt16 KVM_CREATE_VM (*) see note
43 KVM_SET_USER_MEMORY_REGION (*) see note
44 KVM_GET_DIRTY_LOG (**) see note
/linux-4.1.27/arch/powerpc/boot/dts/
Dcurrituck.dts147 /* Legacy interrupts (note the weird polarity, the bridge seems
184 /* Legacy interrupts (note the weird polarity, the bridge seems
221 /* Legacy interrupts (note the weird polarity, the bridge seems
Dp1020rdb-pc_camp_core0.dts9 * Please note to add "-b 0" for core0's dts compiling.
Dakebono.dts275 /* Legacy interrupts (note the weird polarity, the bridge seems
315 /* Legacy interrupts (note the weird polarity, the bridge seems
355 /* Legacy interrupts (note the weird polarity, the bridge seems
395 /* Legacy interrupts (note the weird polarity, the bridge seems
Dmpc8572ds_camp_core1.dts8 * Please note to add "-b 1" for core1's dts compiling.
Dredwood.dts263 /* Legacy interrupts (note the weird polarity, the bridge seems
304 /* Legacy interrupts (note the weird polarity, the bridge seems
345 /* Legacy interrupts (note the weird polarity, the bridge seems
Dp1020rdb-pc_camp_core1.dts8 * Please note to add "-b 1" for core1's dts compiling.
Dkatmai.dts347 /* Legacy interrupts (note the weird polarity, the bridge seems
388 /* Legacy interrupts (note the weird polarity, the bridge seems
429 /* Legacy interrupts (note the weird polarity, the bridge seems
Dmakalu.dts296 /* Legacy interrupts (note the weird polarity, the bridge seems
337 /* Legacy interrupts (note the weird polarity, the bridge seems
Dkilauea.dts350 /* Legacy interrupts (note the weird polarity, the bridge seems
391 /* Legacy interrupts (note the weird polarity, the bridge seems
Dicon.dts343 /* Legacy interrupts (note the weird polarity, the bridge seems
384 /* Legacy interrupts (note the weird polarity, the bridge seems
/linux-4.1.27/drivers/media/pci/saa7146/
DKconfig7 grabber card by Hexium. Please note that the Gemini Dual
/linux-4.1.27/crypto/
Dansi_cprng.c60 static void hexdump(char *note, unsigned char *buf, unsigned int len) in hexdump() argument
63 printk(KERN_CRIT "%s", note); in hexdump()
/linux-4.1.27/arch/sh/
DMakefile80 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment \
/linux-4.1.27/Documentation/devicetree/bindings/
Dchosen.txt43 Implementation note: Linux will look for the property "linux,stdout-path" or
/linux-4.1.27/Documentation/crypto/
Ddescore-readme.txt62 compatible packages below. (note that the first two timings above
185 note that 99% of C programs make these assumptions.
202 note that if you select the wrong one, the des code will still work;
208 note that gcc is smart enough to translate the ROL/R macros into
227 shoehorned 386 version. note that with this release of desCore, gcc is able
307 two bits of each byte are not used. note that these two bits
342 note that i have included a kerberos-compatible interface in desUtil.c
/linux-4.1.27/tools/perf/arch/x86/tests/
Dregs_load.S98 .section .note.GNU-stack,"",@progbits
/linux-4.1.27/Documentation/ja_JP/
Dstable_kernel_rules.txt8 Please also note that purpose of this file is easier to read for non
Dstable_api_nonsense.txt9 Please also note that the purpose of this file is to be easier to read
DSubmitChecklist9 Please also note that the purpose of this file is to be easier to read
/linux-4.1.27/arch/cris/
DMakefile49 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/arch/parisc/
DMakefile45 OBJCOPY_FLAGS =-O binary -R .note -R .comment -S
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/
Dtimer.txt4 - compatible: Should be set to one of the below. Please note that
/linux-4.1.27/arch/mips/boot/
DMakefile21 drop-sections := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
/linux-4.1.27/Documentation/x86/x86_64/
Duefi.txt1 General note on [U]EFI x86_64 support
/linux-4.1.27/tools/power/acpi/
DMakefile92 STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
/linux-4.1.27/Documentation/devicetree/bindings/mtd/
Dgpmi-nand.txt24 However, note that if this strength is not
/linux-4.1.27/Documentation/devicetree/bindings/ata/
Dahci-platform.txt23 Please note that when using "generic-ahci" you must also specify a SoC specific
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Ddma.txt20 However, see note below.
87 However, see note below.
/linux-4.1.27/Documentation/usb/
Dgadget_multi.txt17 Please note that if you use non-standard configuration (that is enable
73 Please note, that while testing we encountered some issues[6] when
/linux-4.1.27/Documentation/video4linux/
Dfimc.txt78 video device, it has no media pads. However please note the mem-to-mem and
138 (note that udev, if present, might still have rearranged the video nodes),
Dcpia2_overview.txt20 try to make note of all of these cases.
/linux-4.1.27/Documentation/devicetree/bindings/mmc/
Dmmc.txt20 - cd-inverted: when present, polarity on the CD line is inverted. See the note
22 - wp-inverted: when present, polarity on the WP line is inverted. See the note
/linux-4.1.27/Documentation/devicetree/bindings/rtc/
Disil,isl12057.txt41 Example isl12057 node with IRQ#2 pin connected to main SoC via MPP6 (note
/linux-4.1.27/Documentation/blackfin/
Dbfin-gpio-notes.txt6 * Created: $Id: bfin-gpio-note.txt 2008-11-24 16:42 grafyang $
/linux-4.1.27/drivers/staging/
DKconfig8 them. Please note that these drivers are under heavy
/linux-4.1.27/drivers/media/pci/saa7134/
Dsaa7134-tvaudio.c255 char *note) in tvaudio_setmode() argument
267 if (note) in tvaudio_setmode()
269 note,audio->name, in tvaudio_setmode()
/linux-4.1.27/Documentation/laptops/
Dsonypi.txt40 Please note that this driver was created by reverse engineering the Windows
42 specs for its laptops. If someone convinces them to do so, drop me a note.
/linux-4.1.27/Documentation/arm/
Dmem_alignment22 Please note that randomly changing the behaviour without good thought is
Dmemory.txt81 Please note that mappings which collide with the above areas may result
/linux-4.1.27/arch/blackfin/
DMakefile13 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/arch/x86/
DMakefile_32.cpu23 # Please note, that patches that add -march=athlon-xp and friends are pointless.
/linux-4.1.27/Documentation/EDID/
DHOWTO.txt33 Makefile. Please note that the EDID data structure expects the timing
/linux-4.1.27/Documentation/blockdev/
Dcciss.txt101 Additionally, note that the driver will engage the SCSI core at init
133 driver to make note of any new or removed sequential access devices
/linux-4.1.27/Documentation/leds/
Dledtrig-transient.txt38 the state. Please note that there is no explicit interaction between the
106 Please note that current LED state is not checked prior to
/linux-4.1.27/arch/c6x/lib/
Ddivremu.S57 ;; RETURN A may happen here (note: must happen before the next branch)
Dremu.S59 ;; RETURN A may happen here (note: must happen before the next branch)
Ddivu.S69 ;; RETURN A may happen here (note: must happen before the next branch)
/linux-4.1.27/Documentation/device-mapper/
Dera.txt71 - Make a note of the current era in its status line
/linux-4.1.27/arch/arm/mach-pxa/
Dsleep.S127 @ note, turbo is not preserved over sleep so there is no
/linux-4.1.27/Documentation/cpuidle/
Dsysfs.txt79 * disable : Option to disable this idle state (bool) -> see note below
/linux-4.1.27/Documentation/pps/
Dpps.txt186 Please, note that to compile userland programs you need the file timepps.h
222 Please note that parallel port interrupt occurs only on high->low transition,
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dcoresight.txt37 * compatible: Currently supported value is (note the absence of the
Dgic.txt43 Also note that the configurability of PPI interrupts is IMPLEMENTATION
/linux-4.1.27/Documentation/scsi/
Darcmsr_spec.txt120 ** note ..command block length shouldn't > 2040 bytes,
226 ** note page0 1st 2 byte must be
468 ** note .... no response data available
/linux-4.1.27/arch/nios2/platform/
DKconfig.platform26 Please note that this address is used directly so you have to manually
/linux-4.1.27/arch/mn10300/kernel/
Dfpu-low.S160 # - note that an FPU Operational exception might occur during this process
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-server-gss.txt7 server and the NFS client's NFSv4.0 callback server. (But note that
/linux-4.1.27/Documentation/arm/Atmel/
DREADME10 It is important to note that the Atmel | SMART ARM-based MPU product line is
/linux-4.1.27/Documentation/frv/
Dkernel-ABI.txt172 the ICC2 condition code flags to note virtual disablement, such that if we
173 then do take an interrupt, we note the flag, really disable interrupts, set
/linux-4.1.27/arch/sparc/lib/
Dchecksum_32.S353 10: EXT(5b, 10b, 20f) ! note for exception handling
378 12: EXT(cctbl, 12b, 22f) ! note for exception table handling
389 11: EXT(ccdbl, 11b, 21f) ! note for exception table handling
/linux-4.1.27/Documentation/filesystems/
Dpath-lookup.txt168 of 'B' must succeed (note the reverse is not true).
246 +---------------------+ rcu-walk begins here, we note d_seq, check the
254 | name: "home" | hash lookup, then note d_seq and compare name
326 Final note:
Ddax.txt91 reads/writes to those memory ranges from a non-DAX file will fail (note
/linux-4.1.27/Documentation/devicetree/bindings/reserved-memory/
Dreserved-memory.txt67 Linux implementation note:
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Dinfo.txt82 Working root directory (note, that server chroots there, so you have to have appropriate permission…
/linux-4.1.27/Documentation/extcon/
Dporting-android-switch-class100 Please note that in order to properly behave with method (a),
/linux-4.1.27/Documentation/power/
Dsuspend-and-cpuhotplug.txt14 But please note that here, only the call paths are illustrated, with the aim
181 But note that the kernel does not maintain a common microcode image for the

123