Home
last modified time | relevance | path

Searched refs:notes (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/external/autotest/client/tests/crashme/
Dcrashme_2.4-9.diff290 - sprintf(notes,"Subprocess run for %d seconds (%d %02d:%02d:%02d)",
291 + sprintf(notes,"Subprocess run for %ld seconds (%ld %02ld:%02ld:%02ld)",
296 - sprintf(notes,"Creating %d crashme subprocesses",nsubs);}
297 + sprintf(notes,"Creating %ld crashme subprocesses",nsubs);}
301 {sprintf(notes,
320 - sprintf(notes,"crashme %s%ld.%d %ld %ld",
321 + sprintf(notes,"crashme %s%ld.%ld %ld %ld",
328 - sprintf(notes,"Badboy at %d. 0x%X",badboy,badboy);
329 + sprintf(notes,"Badboy at %d. 0x%X",(int) badboy,(unsigned int) badboy);
337 - sprintf(notes,"try %d, offset %d",i,offset);
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_sched.c236 check_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes, in check_instr() argument
269 notes->addr_conflict = true; in check_instr()
275 notes->pred_conflict = true; in check_instr()
300 notes->blocked_kill = true; in check_instr()
313 find_instr_recursive(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes, in find_instr_recursive() argument
344 if (check_instr(ctx, notes, instr)) { in find_instr_recursive()
354 candidate = find_instr_recursive(ctx, notes, src); in find_instr_recursive()
358 if (check_instr(ctx, notes, candidate)) { in find_instr_recursive()
370 find_eligible_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes) in find_eligible_instr() argument
385 candidate = find_instr_recursive(ctx, notes, instr); in find_eligible_instr()
[all …]
/external/elfutils/libdwfl/
Dcore-file.c126 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()
497 Elf_Data *notes = elf_getdata_rawchunk (elf, in dwfl_core_file_report() local
501 if (likely (notes != NULL)) in dwfl_core_file_report()
507 while ((pos = gelf_getnote (notes, pos, &nhdr, in dwfl_core_file_report()
510 && !memcmp (notes->d_buf + name_pos, "CORE", sizeof "CORE")) in dwfl_core_file_report()
[all …]
Ddwfl_segment_report_module.c461 void *notes; in dwfl_segment_report_module() local
463 notes = data; in dwfl_segment_report_module()
466 notes = malloc (filesz); in dwfl_segment_report_module()
467 if (unlikely (notes == NULL)) in dwfl_segment_report_module()
472 xlateto.d_buf = notes; in dwfl_segment_report_module()
479 const GElf_Nhdr *nh = notes; in dwfl_segment_report_module()
480 while ((const void *) nh < (const void *) notes + filesz) in dwfl_segment_report_module()
484 if (unlikely ((size_t) ((const void *) notes + filesz in dwfl_segment_report_module()
493 build_id_vaddr = note_desc - (const void *) notes + vaddr; in dwfl_segment_report_module()
505 if (notes != data) in dwfl_segment_report_module()
[all …]
Dlinux-kernel-modules.c470 intuit_kernel_bounds (Dwarf_Addr *start, Dwarf_Addr *end, Dwarf_Addr *notes) in intuit_kernel_bounds() argument
480 *notes = 0; in intuit_kernel_bounds()
491 if (*notes == 0 && !strcmp (state.p, "__start_notes\n")) in intuit_kernel_bounds()
492 *notes = *end; in intuit_kernel_bounds()
649 Dwarf_Addr notes; in dwfl_linux_kernel_report_kernel() local
652 asm ("" : "=m" (notes)); in dwfl_linux_kernel_report_kernel()
653 int result = intuit_kernel_bounds (&start, &end, &notes); in dwfl_linux_kernel_report_kernel()
657 return unlikely (mod == NULL) ? -1 : check_kernel_notes (mod, notes); in dwfl_linux_kernel_report_kernel()
/external/google-breakpad/src/common/linux/
Dfile_id_unittest.cc168 Notes notes(kLittleEndian); in TYPED_TEST() local
169 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier, in TYPED_TEST()
171 elf.AddSection(".note.gnu.build-id", notes, SHT_NOTE); in TYPED_TEST()
200 Notes notes(kLittleEndian); in TYPED_TEST() local
201 notes.AddNote(0, "Linux", in TYPED_TEST()
203 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier, in TYPED_TEST()
205 int note_idx = elf.AddSection(".note", notes, SHT_NOTE); in TYPED_TEST()
Dsynth_elf_unittest.cc376 Notes notes(kLittleEndian); in TEST_F() local
378 ASSERT_TRUE(notes.GetContents(&contents)); in TEST_F()
383 Notes notes(kLittleEndian); in TEST_F() local
384 notes.AddNote(1, "Linux", reinterpret_cast<const uint8_t *>("\x42\x02\0\0"), in TEST_F()
386 notes.AddNote(2, "a", reinterpret_cast<const uint8_t *>("foobar"), in TEST_F()
404 EXPECT_EQ(kExpectedNotesSize, notes.Size()); in TEST_F()
407 ASSERT_TRUE(notes.GetContents(&notes_contents)); in TEST_F()
/external/libcxx/
DNOTES.TXT5 This file contains notes about various libc++ tasks and processes.
11 These notes contain a list of things that must be done after branching for
23 These notes contain a list of things that must be done upon adding a new header
/external/vboot_reference/firmware/lib/
Dvboot_audio.c141 this_msecs = hdr->notes[i].msec ; in VbGetDevMusicNotes()
145 hdr->notes[i].frequency >= 100 && in VbGetDevMusicNotes()
146 hdr->notes[i].frequency <= 2000) in VbGetDevMusicNotes()
174 Memcpy(notebuf, hdr->notes, hdr->count * sizeof(VbDevMusicNote)); in VbGetDevMusicNotes()
/external/valgrind/docs/
DMakefile.am37 internals/avx-notes.txt \
39 internals/Darwin-notes.txt \
40 internals/SPEC-notes.txt \
48 internals/notes.txt \
58 internals/t-chaining-notes.txt \
/external/valgrind/docs/internals/
DDarwin-notes.txt2 Valgrind-developer notes, re the MacOSX port
9 is available. See docs/internals/Darwin-notes.txt for the reason
48 Valgrind-developer notes, things removed from the original MacOSX port
61 Valgrind-developer notes, todos re the MacOSX port
127 look at notes in coregrind/Makefile.am re Mach RPC interface
Drelease-HOWTO.txt27 - Write release notes, add to NEWS. Include a list of fixed bugs from
126 - Include the release notes in the email (maybe not necessary for release
193 Include a link to the release notes. Possibly remove any old release
201 - Make sure the release notes are present in the NEWS file on the trunk and
207 - Include the release notes in the email.
/external/python/cpython2/Lib/plat-irix5/
Dcddb.py84 self.notes = []
109 self.notes.append(value)
190 for note in self.notes:
/external/python/cpython2/Lib/plat-irix6/
Dcddb.py84 self.notes = []
109 self.notes.append(value)
190 for note in self.notes:
/external/python/cpython2/Modules/_ctypes/libffi/
DChangeLog.v114 * README: Boosted rev and updated release notes.
20 * README: Boosted rev and updated release notes.
37 * README: Boosted rev and added release notes.
77 * README: Boosted rev to 1.14. Added notes.
106 * README: Boosted rev to 1.12. Added notes.
115 * README: Boosted rev to 1.11. Added notes about GNU make.
125 * README: Boosted rev to 1.09. Added more notes on building
137 * README: Added n32 bug fix notes.
153 * README: Added sparc notes.
163 * README: Added struct notes.
[all …]
/external/curl/tests/
Dtestcurl.pl75 $timestamp $notes);
114 $notes = (split(/=/, shift @ARGV, 2))[1];
323 print F "notes='$notes'\n";
346 logit "NOTES = $notes";
/external/libopus/doc/
Drelease.txt9 - Include release notes in the tag annotation.
19 - Add release notes to https://svn.xiph.org/websites/opus-codec.org/
/external/clang/test/Modules/
Dbuild-fail-notes.m25 // CHECK-SDIAG: build-fail-notes.m:4:9: note: while building module 'DependsOnModule' imported from
30 // CHECK-SDIAG: build-fail-notes.m:4:9: note: while building module 'DependsOnModule' imported from
/external/swiftshader/third_party/LLVM/test/Assembler/
D2008-09-02-FunctionNotes2.ll1 ; Test function notes
/external/llvm/test/Assembler/
D2008-09-02-FunctionNotes2.ll1 ; Test function notes
/external/libcxx/utils/google-benchmark/
DREADME.LLVM1 LLVM notes
/external/mesa3d/docs/relnotes/
D3.22 Mesa 3.2 release notes
/external/vboot_reference/tests/
Dvboot_api_devmode_tests.c45 note_event_t notes[MAX_NOTE_EVENTS]; member
314 expected_event = test[i].notes; in VbBootDeveloperSoundTest()
Dvboot_audio_tests.c57 hdr->count * sizeof(hdr->notes[0])); in FixChecksum()
71 use_notes = use_hdr->notes; in ResetMocks()
/external/libpcap/
DINSTALL.txt166 The LBNL Network Research Group notes with interest that a standard
280 README.aix - notes on using libpcap on AIX
281 README.dag - notes on using libpcap to capture on Endace DAG devices
282 README.hpux - notes on using libpcap on HP-UX
283 README.linux - notes on using libpcap on Linux
284 README.macosx - notes on using libpcap on Mac OS X
285 README.septel - notes on using libpcap to capture on Intel/Septel devices
286 README.sita - notes on using libpcap to capture on SITA devices
287 README.tru64 - notes on using libpcap on Digital/Tru64 UNIX
288 README.Win32 - notes on using libpcap on Win32 systems (with WinPcap)

12345678910>>...14