Home
last modified time | relevance | path

Searched refs:notes (Results 51 - 75 of 79) sorted by relevance

1234

/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A DgenRef.py334 notes = [
341 notes.extend((
347 notes.extend((
366 '\n'.join(notes),
/kernel/linux/linux-5.10/fs/
H A Dbinfmt_elf_fdpic.c1389 struct memelfnote notes[2]; member
1412 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status()
1415 *sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1430 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status()
1433 *sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1527 /* for notes section */ in elf_fdpic_core_dump()
1540 * Set up the notes in similar form to SVR4 core dumps made in elf_fdpic_core_dump()
1559 /* Write notes phdr entry */ in elf_fdpic_core_dump()
1620 /* write out the notes section */ in elf_fdpic_core_dump()
1621 if (!writenote(thread_list->notes, cpr in elf_fdpic_core_dump()
[all...]
/kernel/linux/linux-6.6/fs/
H A Dbinfmt_elf_fdpic.c1369 struct memelfnote notes[2]; member
1394 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status()
1397 *sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1412 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status()
1415 *sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1509 /* for notes section */ in elf_fdpic_core_dump()
1522 * Set up the notes in similar form to SVR4 core dumps made in elf_fdpic_core_dump()
1541 /* Write notes phdr entry */ in elf_fdpic_core_dump()
1602 /* write out the notes section */ in elf_fdpic_core_dump()
1603 if (!writenote(thread_list->notes, cpr in elf_fdpic_core_dump()
[all...]
/kernel/linux/linux-5.10/kernel/
H A Dmodule.c1661 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1666 unsigned int notes; member
1695 unsigned int notes, loaded, i; in add_notes_attrs() local
1699 /* failed to create section attributes, so can't create notes */ in add_notes_attrs()
1703 /* Count notes sections and allocate structures. */ in add_notes_attrs()
1704 notes = 0; in add_notes_attrs()
1708 ++notes; in add_notes_attrs()
1710 if (notes == 0) in add_notes_attrs()
1713 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes), in add_notes_attrs()
1718 notes_attrs->notes in add_notes_attrs()
[all...]
/third_party/node/test/parallel/
H A Dtest-v8-serdes.js182 and the change should be mentioned in the release notes, as it is semver-major.
/third_party/typescript/tests/baselines/reference/
H A DunderscoreTest1.js778 var notes: any[]; variable
780 var renderNotes = _.after(notes.length, render);
781 _.each(notes, (note) => note.asyncSave({ success: renderNotes }));
999 var notes; variable
1001 var renderNotes = _.after(notes.length, render);
1002 _.each(notes, function (note) { return note.asyncSave({ success: renderNotes }); });
/kernel/linux/linux-5.10/tools/perf/util/
H A Dsort.c459 struct annotation *notes; in hist_entry__sym_ipc_snprintf() local
466 notes = symbol__annotation(sym); in hist_entry__sym_ipc_snprintf()
468 if (notes->hit_cycles) in hist_entry__sym_ipc_snprintf()
469 ipc = notes->hit_insn / ((double)notes->hit_cycles); in hist_entry__sym_ipc_snprintf()
471 if (notes->total_insn) { in hist_entry__sym_ipc_snprintf()
472 coverage = notes->cover_insn * 100.0 / in hist_entry__sym_ipc_snprintf()
473 ((double)notes->total_insn); in hist_entry__sym_ipc_snprintf()
H A Dsymbol.c293 struct annotation *notes = (void *)sym; in symbol__new() local
294 pthread_mutex_init(&notes->lock, NULL); in symbol__new()
2163 if (sysfs__read_build_id("/sys/kernel/notes", &bid) == 0) in dso__find_kallsyms()
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsort.c586 struct annotation *notes; in hist_entry__sym_ipc_snprintf() local
593 notes = symbol__annotation(sym); in hist_entry__sym_ipc_snprintf()
595 if (notes->hit_cycles) in hist_entry__sym_ipc_snprintf()
596 ipc = notes->hit_insn / ((double)notes->hit_cycles); in hist_entry__sym_ipc_snprintf()
598 if (notes->total_insn) { in hist_entry__sym_ipc_snprintf()
599 coverage = notes->cover_insn * 100.0 / in hist_entry__sym_ipc_snprintf()
600 ((double)notes->total_insn); in hist_entry__sym_ipc_snprintf()
H A Dsymbol.c307 struct annotation *notes = (void *)sym; in symbol__new() local
308 annotation__init(notes); in symbol__new()
330 struct annotation *notes = symbol__annotation(sym); in symbol__delete() local
332 annotation__exit(notes); in symbol__delete()
2316 if (sysfs__read_build_id("/sys/kernel/notes", &bid) == 0) in dso__find_kallsyms()
/kernel/linux/linux-5.10/include/asm-generic/
H A Dvmlinux.lds.h58 * Only some architectures want to have the .notes segment visible in
932 * Otherwise, the type of .notes section would become PROGBITS instead of NOTES.
936 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
/kernel/linux/linux-6.6/include/asm-generic/
H A Dvmlinux.lds.h58 * Only some architectures want to have the .notes segment visible in
882 * Otherwise, the type of .notes section would become PROGBITS instead of NOTES.
884 * Also, discard .note.gnu.property, otherwise it forces the notes section to
886 * 4-byte aligned notes.
893 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DELF.h210 /// Get an iterator over notes in a program header.
229 /// Get an iterator over notes in a section.
249 /// Get the end iterator for notes.
254 /// Get an iterator range over notes of a program header.
261 iterator_range<Elf_Note_Iterator> notes(const Elf_Phdr &Phdr, in notes() function in llvm::object::ELFFile
266 /// Get an iterator range over notes of a section.
273 iterator_range<Elf_Note_Iterator> notes(const Elf_Shdr &Shdr, in notes() function in llvm::object::ELFFile
/third_party/curl/docs/cmdline-opts/
H A Dgen.pl32 Dev notes:
/third_party/icu/icu4c/source/tools/gensprep/
H A DfilterRFC3454.pl672 The RFC text can be downloaded from ftp://ftp.rfc-editor.org/in-notes/rfc3454.txt
/third_party/skia/third_party/externals/icu/source/tools/gensprep/
H A DfilterRFC3454.pl672 The RFC text can be downloaded from ftp://ftp.rfc-editor.org/in-notes/rfc3454.txt
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp300 for (auto N : Obj->notes(P, Err)) in getBuildID()
/third_party/ffmpeg/libavcodec/x86/
H A Dxvididct.asm33 ; (See more app notes at http://developer.intel.com/vtune/cbts/strmsimd/appnotes.htm)
/third_party/vk-gl-cts/external/vulkan-docs/src/
H A DMakefile138 NOTEOPTS = -a editing-notes -a implementation-guide
/kernel/linux/linux-5.10/tools/perf/ui/browsers/
H A Dhists.c2430 struct annotation *notes; in do_annotate() local
2438 notes = symbol__annotation(act->ms.sym); in do_annotate()
2439 if (!notes->src) in do_annotate()
/kernel/linux/linux-6.6/tools/perf/ui/browsers/
H A Dhists.c2431 struct annotation *notes; in do_annotate() local
2439 notes = symbol__annotation(act->ms.sym); in do_annotate()
2440 if (!notes->src) in do_annotate()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dsetox.S194 | Notes: Refer to notes for 2.2 - 2.6.
230 | see the notes on Step 1 of setox.
238 | Notes: See the notes on Step 2 of setox.
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dsetox.S194 | Notes: Refer to notes for 2.2 - 2.6.
230 | see the notes on Step 1 of setox.
238 | Notes: See the notes on Step 2 of setox.
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/src/
H A Dfpsp.S6961 # Notes: Refer to notes for 2.2 - 2.6. #
6996 # the comparisons, see the notes on Step 1 of setox. #
7007 # Notes: See the notes on Step 2 of setox. #
21696 # other notes: #
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/src/
H A Dfpsp.S6961 # Notes: Refer to notes for 2.2 - 2.6. #
6996 # the comparisons, see the notes on Step 1 of setox. #
7007 # Notes: See the notes on Step 2 of setox. #
21696 # other notes: #

Completed in 108 milliseconds

1234