/kernel/linux/linux-5.10/sound/core/seq/oss/ |
H A D | seq_oss_event.h | 26 /* short note events (4bytes) */ 30 unsigned char note; member 67 unsigned char note, parm; member
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | elfnote.h | 10 * Each note has three parts: a name, a type and a desc. The name is 11 * intended to distinguish the note's originator, so it would be a 20 * .note.NAME. When the kernel image is finally linked, all the notes 43 .pushsection .note.name, flags,@note ; \ 68 * only define one note per line, since __LINE__ is used to generate 81 __attribute__((section(".note." name), \
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | elfnote.h | 10 * Each note has three parts: a name, a type and a desc. The name is 11 * intended to distinguish the note's originator, so it would be a 20 * .note.NAME. When the kernel image is finally linked, all the notes 43 .pushsection .note.name, flags,@note ; \ 68 * only define one note per line, since __LINE__ is used to generate 81 __attribute__((section(".note." name), \
|
/kernel/linux/linux-6.6/sound/core/seq/oss/ |
H A D | seq_oss_event.h | 26 /* short note events (4bytes) */ 30 unsigned char note; member 67 unsigned char note, parm; member
|
/third_party/rust/crates/codespan/codespan-reporting/tests/ |
H A D | term.rs | 97 Diagnostic::note(), 284 "note: required because it appears within the type `Port<()>`".to_owned(), 285 "note: required because it appears within the type `main::Foo`".to_owned(), 286 "note: required because it appears within the type `[closure@no_send_res_ports.rs:29:19: 33:6 x:main::Foo]`".to_owned(), 318 Diagnostic::note().with_message("a message"), 342 Diagnostic::error().with_message("a message").with_notes(vec!["a note".to_owned()]), 343 Diagnostic::warning().with_message("a message").with_notes(vec!["a note".to_owned()]), 344 Diagnostic::note().with_message("a message").with_notes(vec!["a note".to_owned()]), 345 Diagnostic::help().with_message("a message").with_notes(vec!["a note" [all...] |
/kernel/linux/linux-5.10/arch/arc/boot/ |
H A D | Makefile | 8 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/kernel/linux/linux-5.10/arch/riscv/boot/ |
H A D | Makefile | 19 OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/kernel/linux/linux-5.10/arch/sh/kernel/vsyscall/ |
H A D | Makefile | 9 targets += vsyscall-note.o vsyscall.lds vsyscall-dummy.o 31 $(obj)/vsyscall-trapa.o $(obj)/vsyscall-note.o FORCE
|
/kernel/linux/linux-6.6/arch/arm64/boot/ |
H A D | Makefile | 17 OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/kernel/linux/linux-6.6/arch/sh/kernel/vsyscall/ |
H A D | Makefile | 9 targets += vsyscall-note.o vsyscall.lds vsyscall-dummy.o 31 $(obj)/vsyscall-trapa.o $(obj)/vsyscall-note.o FORCE
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | WithColor.h | 79 /// Convenience method for printing "note: " to stderr. 80 static raw_ostream ¬e(); 90 /// Convenience method for printing "note: " to the given stream. 91 static raw_ostream ¬e(raw_ostream &OS, StringRef Prefix = "",
|
/kernel/linux/linux-5.10/fs/proc/ |
H A D | kcore.c | 299 struct elf_note *note = (struct elf_note *)¬es[*i]; in append_kcore_note() local 301 note->n_namesz = strlen(name) + 1; in append_kcore_note() 302 note->n_descsz = descsz; in append_kcore_note() 303 note->n_type = type; in append_kcore_note() 304 *i += sizeof(*note); in append_kcore_note() 305 memcpy(¬es[*i], name, note->n_namesz); in append_kcore_note() 306 *i = ALIGN(*i + note->n_namesz, 4); in append_kcore_note() 412 /* ELF note segment. */ in read_kcore()
|
/kernel/linux/linux-6.6/fs/proc/ |
H A D | kcore.c | 298 struct elf_note *note = (struct elf_note *)¬es[*i]; in append_kcore_note() local 300 note->n_namesz = strlen(name) + 1; in append_kcore_note() 301 note->n_descsz = descsz; in append_kcore_note() 302 note->n_type = type; in append_kcore_note() 303 *i += sizeof(*note); in append_kcore_note() 304 memcpy(¬es[*i], name, note->n_namesz); in append_kcore_note() 305 *i = ALIGN(*i + note->n_namesz, 4); in append_kcore_note() 414 /* ELF note segment. */ in read_kcore_iter()
|
/kernel/linux/linux-6.6/kernel/ |
H A D | crash_core.c | 335 /* extra phdr for vmcoreinfo ELF note */ in crash_prepare_elf64_headers() 508 struct elf_note *note = (struct elf_note *)buf; in append_elf_note() local 510 note->n_namesz = strlen(name) + 1; in append_elf_note() 511 note->n_descsz = data_len; in append_elf_note() 512 note->n_type = type; in append_elf_note() 513 buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word)); in append_elf_note() 514 memcpy(buf, name, note->n_namesz); in append_elf_note() 515 buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word)); in append_elf_note() 551 /* Use the safe copy to generate vmcoreinfo note if have */ in crash_save_vmcoreinfo()
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
H A D | views.rs | 394 for note in &self.diagnostic.notes { 395 renderer.render_snippet_note(outer_padding, note)?; 471 for note in &self.diagnostic.notes { in render() 472 renderer.render_snippet_note(0, note)?; in render()
|
/kernel/linux/linux-5.10/arch/sparc/vdso/ |
H A D | Makefile | 10 vobjs-y := vdso-note.o vclock_gettime.o 81 targets += vdso32/vdso-note.o 104 $(obj)/vdso32/vdso-note.o
|
/kernel/linux/linux-6.6/arch/sparc/vdso/ |
H A D | Makefile | 10 vobjs-y := vdso-note.o vclock_gettime.o 81 targets += vdso32/vdso-note.o 105 $(obj)/vdso32/vdso-note.o
|
/kernel/linux/linux-5.10/drivers/pci/hotplug/ |
H A D | acpiphp_ibm.c | 255 struct notification *note = context; in ibm_handle_events() local 261 acpi_bus_generate_netlink_event(note->device->pnp.device_class, in ibm_handle_events() 262 dev_name(¬e->device->dev), in ibm_handle_events() 263 note->event, detail); in ibm_handle_events() 265 note->event = event; in ibm_handle_events()
|
/kernel/linux/linux-6.6/drivers/pci/hotplug/ |
H A D | acpiphp_ibm.c | 255 struct notification *note = context; in ibm_handle_events() local 261 acpi_bus_generate_netlink_event(note->device->pnp.device_class, in ibm_handle_events() 262 dev_name(¬e->device->dev), in ibm_handle_events() 263 note->event, detail); in ibm_handle_events() 265 note->event = event; in ibm_handle_events()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
H A D | mod.rs | 1945 #[deprecated(since = "0.2.64", note = "Not stable across OS versions")] 2044 note = "CTL_UNSPEC is deprecated. Use CTL_SYSCTL instead" 2458 note = "IFF_DRV_RUNNING is deprecated. Use the portable IFF_RUNNING instead" 2471 #[deprecated(since = "0.2.54", note = "Use the portable `IFF_OACTIVE` instead")] 2723 note = "IPPROTO_SEP is deprecated. Use IPPROTO_DCCP instead" 2964 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")] 2967 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")] 2970 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")] 2973 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")] 2976 #[deprecated(since = "0.2.74", note [all...] |
/kernel/linux/linux-5.10/include/uapi/linux/ |
H A D | soundcard.h | 234 #define WAVE_FAST_RELEASE 0x80 /* bit 7 = Shut off immediately after note off */ 251 * playback speed for a note. The base_note defines the tone frequency 255 * The low_note and high_note fields define the minimum and maximum note 261 * the note frequency multiplied by 1000. For example value for the 986 * 0x01 = note event (event[4] = note). 988 * event[2] = MIDI message code (0x80=note off etc.) 1128 #define _CHN_VOICE(dev, event, chn, note, parm) \ 1134 _seqbuf[_seqbufptr+4] = (note);\ 1140 #define SEQ_START_NOTE(dev, chn, note, vo [all...] |
/kernel/linux/linux-6.6/include/uapi/linux/ |
H A D | soundcard.h | 234 #define WAVE_FAST_RELEASE 0x80 /* bit 7 = Shut off immediately after note off */ 251 * playback speed for a note. The base_note defines the tone frequency 255 * The low_note and high_note fields define the minimum and maximum note 261 * the note frequency multiplied by 1000. For example value for the 986 * 0x01 = note event (event[4] = note). 988 * event[2] = MIDI message code (0x80=note off etc.) 1128 #define _CHN_VOICE(dev, event, chn, note, parm) \ 1134 _seqbuf[_seqbufptr+4] = (note);\ 1140 #define SEQ_START_NOTE(dev, chn, note, vo [all...] |
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/ |
H A D | soundcard.h | 645 #define _CHN_VOICE(dev,event,chn,note,parm) { _SEQ_NEEDBUF(8); _seqbuf[_seqbufptr] = EV_CHN_VOICE; _seqbuf[_seqbufptr + 1] = (dev); _seqbuf[_seqbufptr + 2] = (event); _seqbuf[_seqbufptr + 3] = (chn); _seqbuf[_seqbufptr + 4] = (note); _seqbuf[_seqbufptr + 5] = (parm); _seqbuf[_seqbufptr + 6] = (0); _seqbuf[_seqbufptr + 7] = 0; _SEQ_ADVBUF(8); } 646 #define SEQ_START_NOTE(dev,chn,note,vol) _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) 647 #define SEQ_STOP_NOTE(dev,chn,note,vol) _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) 648 #define SEQ_KEY_PRESSURE(dev,chn,note,pressure) _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/ |
H A D | soundcard.h | 671 #define _CHN_VOICE(dev, event, chn, note, parm) \ 677 _seqbuf[_seqbufptr+4] = (note);\ 682 #define SEQ_START_NOTE(dev, chn, note, vol) \ 683 _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) 684 #define SEQ_STOP_NOTE(dev, chn, note, vol) \ 685 _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) 686 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ 687 _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/ |
H A D | soundcard.h | 645 #define _CHN_VOICE(dev,event,chn,note,parm) { _SEQ_NEEDBUF(8); _seqbuf[_seqbufptr] = EV_CHN_VOICE; _seqbuf[_seqbufptr + 1] = (dev); _seqbuf[_seqbufptr + 2] = (event); _seqbuf[_seqbufptr + 3] = (chn); _seqbuf[_seqbufptr + 4] = (note); _seqbuf[_seqbufptr + 5] = (parm); _seqbuf[_seqbufptr + 6] = (0); _seqbuf[_seqbufptr + 7] = 0; _SEQ_ADVBUF(8); } 646 #define SEQ_START_NOTE(dev,chn,note,vol) _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) 647 #define SEQ_STOP_NOTE(dev,chn,note,vol) _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) 648 #define SEQ_KEY_PRESSURE(dev,chn,note,pressure) _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
|