/external/autotest/client/tests/crashme/ |
D | crashme_2.4-9.diff | 290 - 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/ |
D | ir3_sched.c | 236 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/ |
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() 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 …]
|
D | dwfl_segment_report_module.c | 461 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 …]
|
D | linux-kernel-modules.c | 470 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, ¬es); 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/ |
D | file_id_unittest.cc | 168 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()
|
D | synth_elf_unittest.cc | 376 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(¬es_contents)); in TEST_F()
|
/external/libcxx/ |
D | NOTES.TXT | 5 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/ |
D | vboot_audio.c | 141 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/ |
D | Makefile.am | 37 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/ |
D | Darwin-notes.txt | 2 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
|
D | release-HOWTO.txt | 27 - 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/ |
D | cddb.py | 84 self.notes = [] 109 self.notes.append(value) 190 for note in self.notes:
|
/external/python/cpython2/Lib/plat-irix6/ |
D | cddb.py | 84 self.notes = [] 109 self.notes.append(value) 190 for note in self.notes:
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | ChangeLog.v1 | 14 * 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/ |
D | testcurl.pl | 75 $timestamp $notes); 114 $notes = (split(/=/, shift @ARGV, 2))[1]; 323 print F "notes='$notes'\n"; 346 logit "NOTES = $notes";
|
/external/libopus/doc/ |
D | release.txt | 9 - Include release notes in the tag annotation. 19 - Add release notes to https://svn.xiph.org/websites/opus-codec.org/
|
/external/clang/test/Modules/ |
D | build-fail-notes.m | 25 // 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/ |
D | 2008-09-02-FunctionNotes2.ll | 1 ; Test function notes
|
/external/llvm/test/Assembler/ |
D | 2008-09-02-FunctionNotes2.ll | 1 ; Test function notes
|
/external/libcxx/utils/google-benchmark/ |
D | README.LLVM | 1 LLVM notes
|
/external/mesa3d/docs/relnotes/ |
D | 3.2 | 2 Mesa 3.2 release notes
|
/external/vboot_reference/tests/ |
D | vboot_api_devmode_tests.c | 45 note_event_t notes[MAX_NOTE_EVENTS]; member 314 expected_event = test[i].notes; in VbBootDeveloperSoundTest()
|
D | vboot_audio_tests.c | 57 hdr->count * sizeof(hdr->notes[0])); in FixChecksum() 71 use_notes = use_hdr->notes; in ResetMocks()
|
/external/libpcap/ |
D | INSTALL.txt | 166 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)
|