/third_party/elfio/elfio/ |
H A D | elfio_note.hpp | 47 : elf_file( elf_file ), notes( section ) in note_section_accessor_template() 65 if ( index >= ( notes->*F_get_size )() ) { in get_note() 69 const char* pData = notes->get_data() + note_start_positions[index]; in get_note() 78 ( notes->*F_get_size )() - note_start_positions[index]; in get_note() 126 note_start_positions.emplace_back( ( notes->*F_get_size )() ); in add_note() 127 notes->append_data( buffer ); in add_note() 135 const char* data = notes->get_data(); in process_section() 136 Elf_Xword size = ( notes->*F_get_size )(); in process_section() 169 S* notes; member in ELFIO::note_section_accessor_template
|
H A D | elfio_dump.hpp | 945 static void notes( std::ostream& out, const elfio& reader ) in notes() function in ELFIO::dump 948 if ( SHT_NOTE == sec->get_type() ) { // Look at notes in notes() 949 note_section_accessor notes( reader, sec.get() ); in notes() 950 Elf_Word no_notes = notes.get_notes_num(); in notes() 958 for ( Elf_Word j = 0; j < no_notes; ++j ) { // For all notes in notes() 964 if ( notes.get_note( j, type, name, desc, descsz ) ) { in notes() 979 if ( PT_NOTE == seg->get_type() ) { // Look at notes in notes() 980 note_segment_accessor notes( reader, seg ); in notes() 981 Elf_Word no_notes = notes.get_notes_num(); in notes() 989 for ( Elf_Word j = 0; j < no_notes; ++j ) { // For all notes in notes() [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_sched.c | 416 check_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes, in check_instr() argument 478 notes->addr0_conflict = true; in check_instr() 484 notes->addr1_conflict = true; in check_instr() 490 notes->pred_conflict = true; in check_instr() 512 notes->blocked_kill = true; in check_instr() 648 struct ir3_sched_notes *notes, 689 choose_instr_dec(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes, in choose_instr_dec() argument 706 if (!check_instr(ctx, notes, n->instr)) in choose_instr_dec() 747 return choose_instr_inc(ctx, notes, defer, true); in choose_instr_dec() 773 choose_instr_inc(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes, in choose_instr_inc() argument 828 choose_instr_prio(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes) choose_instr_prio() argument 877 choose_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes) choose_instr() argument 1229 struct ir3_sched_notes notes = {0}; sched_block() local [all...] |
/third_party/elfutils/libdwfl/ |
H A D | core-file.c | 126 dwfl_report_core_segments (Dwfl *dwfl, Elf *elf, size_t phnum, GElf_Phdr *notes) in dwfl_report_core_segments() argument 133 if (notes != NULL) in dwfl_report_core_segments() 134 notes->p_type = PT_NULL; in dwfl_report_core_segments() 152 if (notes != NULL) in dwfl_report_core_segments() 154 *notes = *phdr; in dwfl_report_core_segments() 155 notes = NULL; in dwfl_report_core_segments() 516 Elf_Data *notes = elf_getdata_rawchunk (elf, in dwfl_core_file_report() local 522 if (likely (notes != NULL)) in dwfl_core_file_report() 528 while ((pos = gelf_getnote (notes, pos, &nhdr, in dwfl_core_file_report() 531 && !memcmp (notes in dwfl_core_file_report() [all...] |
H A D | dwfl_segment_report_module.c | 553 void *notes; in dwfl_segment_report_module() local 558 notes = data; in dwfl_segment_report_module() 565 notes = malloc (filesz); in dwfl_segment_report_module() 566 if (unlikely (notes == NULL)) in dwfl_segment_report_module() 573 xlateto.d_buf = notes; in dwfl_segment_report_module() 583 memcpy (notes, data, filesz); in dwfl_segment_report_module() 584 xlatefrom.d_buf = notes; in dwfl_segment_report_module() 589 free (notes); in dwfl_segment_report_module() 595 const GElf_Nhdr *nh = notes; in dwfl_segment_report_module() 606 void *note_name = notes in dwfl_segment_report_module() [all...] |
H A D | linux-kernel-modules.c | 71 #define KNOTESFILE "/sys/kernel/notes" 72 #define MODNOTESFMT "/sys/module/%s/notes" 525 intuit_kernel_bounds (Dwarf_Addr *start, Dwarf_Addr *end, Dwarf_Addr *notes) in intuit_kernel_bounds() argument 529 *notes = 0; in intuit_kernel_bounds() 549 if (*notes == 0 && !strcmp (state.p, "__start_notes\n")) in intuit_kernel_bounds() 550 *notes = *end; in intuit_kernel_bounds() 604 /* This is somewhat ugly, GNU Property notes use different padding, in check_notes() 734 Dwarf_Addr notes; in dwfl_linux_kernel_report_kernel() local 735 int result = intuit_kernel_bounds (&start, &end, ¬es); in dwfl_linux_kernel_report_kernel() 739 return unlikely (mod == NULL) ? -1 : check_kernel_notes (mod, notes); in dwfl_linux_kernel_report_kernel() [all...] |
/third_party/rust/crates/codespan/codespan-reporting/src/ |
H A D | diagnostic.rs | 128 /// sense on its own, without additional context provided by labels and notes. 136 pub notes: Vec<String>, 147 notes: Vec::new(), in new() 204 /// Add some notes to the diagnostic. 205 pub fn with_notes(mut self, notes: Vec<String>) -> Diagnostic<FileId> { in with_notes() 206 self.notes = notes; in with_notes()
|
/third_party/rust/crates/clap/.github/workflows/ |
H A D | release-notes.py | 35 notes = "".join(note_lines).strip() 37 print(notes) 39 args.output.write_text(notes)
|
/third_party/elfio/tests/ |
H A D | ELFIOTest.cpp | 183 void checkNote( const const_note_section_accessor& notes, in checkNote() argument 194 ASSERT_EQ( notes.get_note( index, type, name, desc, descSize ), true ); in checkNote() 300 const_note_section_accessor notes( reader, sec ); in TEST() 301 EXPECT_EQ( notes.get_notes_num(), 1u ); in TEST() 303 checkNote( notes, 0, 1, std::string( "GNU" ), 16 ); in TEST() 411 const_note_section_accessor notes( reader, sec ); in TEST() 412 EXPECT_EQ( notes.get_notes_num(), 1u ); in TEST() 414 checkNote( notes, 0, 1, std::string( "GNU" ), 16 ); in TEST() 702 const_note_section_accessor notes( reader, sec ); in TEST() 703 EXPECT_EQ( notes in TEST() [all...] |
H A D | elfio_fuzzer.cpp | 25 dump::notes( oss, elf ); in LLVMFuzzerTestOneInput()
|
/third_party/curl/tests/ |
H A D | testcurl.pl | 51 # --notes=[notes] More human-readable information about this configuration 77 $timestamp $notes); 115 elsif ($ARGV[0] =~ /--notes=/) { 116 $notes = (split(/=/, shift @ARGV, 2))[1]; 315 print $f "notes='$notes'\n"; 338 logit "NOTES = $notes";
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
H A D | views.rs | 373 if labeled_files.peek().is_none() && self.diagnostic.notes.is_empty() { 375 // without trailing notes, because it would end up looking too 388 // Additional notes 394 for note in &self.diagnostic.notes { 465 // Additional notes in render() 471 for note in &self.diagnostic.notes { in render()
|
/third_party/elfio/examples/elfdump/ |
H A D | elfdump.cpp | 53 dump::notes( std::cout, reader ); in main()
|
/third_party/python/Objects/ |
H A D | exceptions.c | 51 self->notes = NULL; in BaseException_new() 87 Py_CLEAR(self->notes); in BaseException_clear() 112 Py_VISIT(self->notes); in BaseException_traverse() 224 PyObject *notes = PyObject_GetAttr(self, &_Py_ID(__notes__)); in BaseException_add_note() local 225 if (notes == NULL) { in BaseException_add_note() 228 if (!PyList_Check(notes)) { in BaseException_add_note() 229 Py_DECREF(notes); in BaseException_add_note() 233 if (PyList_Append(notes, note) < 0) { in BaseException_add_note() 234 Py_DECREF(notes); in BaseException_add_note() 237 Py_DECREF(notes); in BaseException_add_note() 947 PyObject *notes = PyObject_GetAttr(orig, &_Py_ID(__notes__)); exceptiongroup_subset() local [all...] |
/third_party/python/Python/ |
H A D | pythonrun.c | 1144 PyObject *notes = PyObject_GetAttr(value, &_Py_ID(__notes__)); in print_exception_notes() local 1145 if (notes == NULL) { in print_exception_notes() 1148 if (!PySequence_Check(notes)) { in print_exception_notes() 1153 PyObject *s = PyObject_Repr(notes); in print_exception_notes() 1162 Py_DECREF(notes); in print_exception_notes() 1165 Py_ssize_t num_notes = PySequence_Length(notes); in print_exception_notes() 1168 PyObject *note = PySequence_GetItem(notes, ni); in print_exception_notes() 1204 Py_DECREF(notes); in print_exception_notes() 1208 Py_DECREF(notes); in print_exception_notes()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | genRef.py | 334 notes = [ 341 notes.extend(( 347 notes.extend(( 366 '\n'.join(notes),
|
/third_party/python/Include/cpython/ |
H A D | pyerrors.h | 9 PyObject *args; PyObject *notes; PyObject *traceback;\
|
/third_party/typescript/tests/baselines/reference/ |
H A D | underscoreTest1.js | 778 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 }); });
|
/third_party/node/test/parallel/ |
H A D | test-v8-serdes.js | 182 and the change should be mentioned in the release notes, as it is semver-major.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | ELF.h | 210 /// 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 D | gen.pl | 32 Dev notes:
|
/third_party/icu/icu4c/source/tools/gensprep/ |
H A D | filterRFC3454.pl | 672 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 D | filterRFC3454.pl | 672 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 D | Symbolize.cpp | 300 for (auto N : Obj->notes(P, Err)) in getBuildID()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | xvididct.asm | 33 ; (See more app notes at http://developer.intel.com/vtune/cbts/strmsimd/appnotes.htm)
|