Searched refs:note (Results 1 - 25 of 131) sorted by last modified time

123456

/linux-master/kernel/
H A Dvmcore_info.c37 struct elf_note *note = (struct elf_note *)buf; local
39 note->n_namesz = strlen(name) + 1;
40 note->n_descsz = data_len;
41 note->n_type = type;
42 buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word));
43 memcpy(buf, name, note->n_namesz);
44 buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word));
80 /* Use the safe copy to generate vmcoreinfo note if have */
/linux-master/arch/arc/boot/
H A DMakefile7 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
/linux-master/sound/core/seq/
H A Dseq_ump_convert.c81 /* encode note event */
85 ev->data.note.channel = val->note.channel;
86 ev->data.note.note = val->note.note;
87 ev->data.note.velocity = val->note.velocity;
136 unsigned char status = val->note
[all...]
H A Dseq_prioq.c351 /* data.note.channel and data.control.channel are identical */
352 if (ev->data.note.channel != info->channel)
H A Dseq_midi_event.c23 /* from 0 to 6 are normal commands (note off, on, etc.) for 0x9?-0xe? */
236 /* encode note event */
239 ev->data.note.channel = dev->buf[0] & 0x0f;
240 ev->data.note.note = dev->buf[1];
241 ev->data.note.velocity = dev->buf[2];
304 /* data.note.channel and data.control.channel is identical */
305 cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f);
339 /* decode note event */
342 buf[0] = ev->data.note
[all...]
/linux-master/arch/riscv/kernel/vdso/
H A DMakefile17 obj-vdso = $(patsubst %, %.o, $(vdso-syms)) note.o
/linux-master/arch/riscv/kernel/compat_vdso/
H A DMakefile28 obj-compat_vdso = $(patsubst %, %.o, $(compat_vdso-syms)) note.o
/linux-master/arch/x86/entry/vdso/
H A DMakefile24 vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o
25 vobjs32-y := vdso32/note.o vdso32/system_call.o vdso32/sigreturn.o
/linux-master/fs/
H A Dbinfmt_elf_fdpic.c1203 /* An ELF note in memory */
1275 static inline void fill_note(struct memelfnote *note, const char *name, int type, argument
1278 note->name = name;
1279 note->type = type;
1280 note->datasz = sz;
1281 note->data = data;
/linux-master/arch/riscv/kernel/pi/
H A DMakefile27 --remove-section=.note.gnu.property \
/linux-master/arch/loongarch/kernel/
H A Dvmlinux.lds.S30 note PT_NOTE FLAGS(4); /* R__ */
/linux-master/drivers/scsi/csiostor/
H A Dcsio_lnode.c1915 * @note: Notification
1923 csio_notify_lnodes(struct csio_hw *hw, enum csio_ln_notify note) argument
1928 csio_dbg(hw, "Notifying all nodes of event %d\n", note);
1934 switch (note) {
/linux-master/arch/powerpc/kernel/
H A DMakefile81 paca.o nvram_64.o note.o
/linux-master/sound/core/seq/oss/
H A Dseq_oss_midi.c581 ossev.v.note = ev->data.note.note;
582 ossev.v.parm = ev->data.note.velocity;
583 ossev.v.chn = ev->data.note.channel;
H A Dseq_oss_device.h49 int note, vel; member in struct:seq_oss_chinfo
/linux-master/security/smack/
H A Dsmack_lsm.c131 static int smk_bu_note(char *note, struct smack_known *sskp, argument
143 sskp->smk_known, oskp->smk_known, acc, note);
147 #define smk_bu_note(note, sskp, oskp, mode, RC) (RC)
151 static int smk_bu_current(char *note, struct smack_known *oskp, argument
165 acc, current->comm, note);
169 #define smk_bu_current(note, oskp, mode, RC) (RC)
/linux-master/include/sound/
H A Demux_synth.h108 struct timer_list tlist; /* for pending note-offs */
164 unsigned char note; /* Note currently assigned to this voice */ member in struct:snd_emux_voice
166 unsigned char velocity; /* Velocity of current note */
168 struct snd_sf_zone *zone; /* Zone assigned to this note */
170 struct snd_midi_channel *chan; /* Midi channel for this note */
174 unsigned long ontime; /* jiffies at note triggered */
/linux-master/include/asm-generic/
H A Dvmlinux.lds.h66 #define NOTES_HEADERS :text :note
882 * Discard .note.GNU-stack, which is emitted as PROGBITS by the compiler.
885 * Also, discard .note.gnu.property, otherwise it forces the notes section to
891 *(.note.GNU-stack) \
892 *(.note.gnu.property) \
895 BOUNDED_SECTION_BY(.note.*, _notes) \
/linux-master/fs/proc/
H A Dkcore.c298 struct elf_note *note = (struct elf_note *)&notes[*i]; local
300 note->n_namesz = strlen(name) + 1;
301 note->n_descsz = descsz;
302 note->n_type = type;
303 *i += sizeof(*note);
304 memcpy(&notes[*i], name, note->n_namesz);
305 *i = ALIGN(*i + note->n_namesz, 4);
414 /* ELF note segment. */
/linux-master/drivers/net/ethernet/sun/
H A Dcassini.c442 /* cp->lock held. note: the last put_page will free the buffer */
1152 while ((inst = firmware) && inst->note) {
/linux-master/drivers/hid/
H A Dhid-prodikeys.c40 unsigned char note; member in struct:pcmidi_sustain
204 unsigned char status, unsigned char note, unsigned char velocity)
210 buffer[1] = note;
232 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity);
330 unsigned char status, note, velocity; local
334 note = data[j*2+1];
337 if (note < 0x81) { /* note on */
339 note = note
203 pcmidi_send_note(struct pcmidi_snd *pm, unsigned char status, unsigned char note, unsigned char velocity) argument
[all...]
/linux-master/drivers/firmware/efi/libstub/
H A DMakefile106 # .note.gnu.property for code-less object files (like lib/ctype.c),
109 STUBCOPY_FLAGS-y += --remove-section=.note.gnu.property
/linux-master/arch/powerpc/platforms/powernv/
H A Dopal-core.c30 /* NT_AUXV note related info */
96 Elf64_Nhdr *note = (Elf64_Nhdr *)buf; local
99 note->n_namesz = cpu_to_be32(namesz);
100 note->n_descsz = cpu_to_be32(data_len);
101 note->n_type = cpu_to_be32(type);
102 buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf64_Word));
251 * Skip past the first CPU note. Fill this note with the
287 * Add crashing CPU as the first NT_PRSTATUS note for
/linux-master/arch/arm64/kernel/pi/
H A DMakefile34 --remove-section=.note.gnu.property
/linux-master/arch/arm64/include/asm/
H A Dassembler.h774 * This macro emits a program property note section identifying
793 .pushsection .note.gnu.property, "a"

Completed in 375 milliseconds

123456