HomeSort by relevance Sort by last modified time
    Searched refs:PRIx64 (Results 1 - 25 of 298) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libpcap/Win32/Include/
bittypes.h 73 #ifndef PRIx64
75 #define PRIx64 "I64x"
77 #define PRIx64 "llx"
79 #endif /* PRIx64 */
  /external/pdfium/third_party/libopenjpeg20/
opj_inttypes.h 42 #define PRIx64 "I64x"
  /external/google-breakpad/src/processor/
dump_context.cc 41 #define PRIx64 "llx"
361 printf(" float_save.fpregs[%2d] = 0x%" PRIx64 "\n",
369 // PRIx64 as two 64-bit quantities requires knowledge of the CPU's
381 printf(" context_flags = 0x%" PRIx64 "\n",
383 printf(" srr0 = 0x%" PRIx64 "\n",
385 printf(" srr1 = 0x%" PRIx64 "\n",
390 printf(" gpr[%2d] = 0x%" PRIx64 "\n",
393 printf(" cr = 0x%" PRIx64 "\n", context_ppc64->cr);
394 printf(" xer = 0x%" PRIx64 "\n",
396 printf(" lr = 0x%" PRIx64 "\n", context_ppc64->lr)
    [all...]
  /external/vixl/examples/
swap4.cc 71 "x0 = 0x%" PRIx64 "\n"
72 "x1 = 0x%" PRIx64 "\n"
73 "x2 = 0x%" PRIx64 "\n"
74 "x3 = 0x%" PRIx64 "\n",
81 "x0 = 0x%" PRIx64 "\n"
82 "x1 = 0x%" PRIx64 "\n"
83 "x2 = 0x%" PRIx64 "\n"
84 "x3 = 0x%" PRIx64 "\n",
  /external/llvm/lib/MC/
MCInstPrinter.cpp 89 return format("-0x%" PRIx64, -Value);
91 return format("0x%" PRIx64, Value);
95 return format("-0%" PRIx64 "h", -Value);
97 return format("-%" PRIx64 "h", -Value);
100 return format("0%" PRIx64 "h", Value);
102 return format("%" PRIx64 "h", Value);
111 return format("0x%" PRIx64, Value);
114 return format("0%" PRIx64 "h", Value);
116 return format("%" PRIx64 "h", Value);
  /external/libchrome/base/trace_event/
process_memory_totals.cc 24 StringPrintf("%" PRIx64, resident_set_bytes_));
27 StringPrintf("%" PRIx64, peak_resident_set_bytes_));
32 value->SetString(it.first, StringPrintf("%" PRIx64, it.second));
  /external/google-breakpad/src/google_breakpad/common/
breakpad_types.h 79 /* Try to get PRIx64 from inttypes.h, but if it's not defined, fall back to
82 #ifndef PRIx64
83 #define PRIx64 "llx"
84 #endif /* !PRIx64 */
  /external/webrtc/webrtc/base/
format_macros.h 86 #if !defined(PRIx64)
87 #define PRIx64 "I64x"
  /external/valgrind/memcheck/tests/vbit-test/
util.c 89 case 64: fprintf(fp, "%016"PRIx64, val.u64); break;
92 fprintf(fp, "%016"PRIx64, val.u128[1]);
93 fprintf(fp, "%016"PRIx64, val.u128[0]);
95 fprintf(fp, "%016"PRIx64, val.u128[0]);
96 fprintf(fp, "%016"PRIx64, val.u128[1]);
101 fprintf(fp, "%016"PRIx64, val.u256[3]);
102 fprintf(fp, "%016"PRIx64, val.u256[2]);
103 fprintf(fp, "%016"PRIx64, val.u256[1]);
104 fprintf(fp, "%016"PRIx64, val.u256[0]);
106 fprintf(fp, "%016"PRIx64, val.u256[0])
    [all...]
  /external/elfutils/tests/
dwarf-ranges.c 51 fprintf (stderr, "%"PRIx64"..%"PRIx64" (base %"PRIx64")\n",
dwfl-addr-sect.c 41 error (0, 0, "%#" PRIx64 ": dwfl_module_address_section: %s",
45 printf ("address %#" PRIx64 " => module \"%s\" section %zu + %#" PRIx64 "\n",
dwflmodtest.c 96 printf (" %#" PRIx64 "..%#" PRIx64, lo, hi);
98 printf (" => %#" PRIx64 "\n", entry);
148 printf (" %#" PRIx64 "..%#" PRIx64 " => %#" PRIx64 "\n",
171 printf ("module: %30s %08" PRIx64 "..%08" PRIx64 " %s %s\n",
183 printf ("module: %30s %08" PRIx64 " %s %" PRIx64 " (%s)\n"
    [all...]
addrscopes.c 42 printf ("%s%#" PRIx64 " (%s:%d:%d)",
45 printf ("%s%#" PRIx64 " (%s:%d)",
49 printf ("%s%#" PRIx64, prefix, addr);
62 printf ("%*s%-30s[%6" PRIx64 "]\n", indent, "",
107 printf ("%#" PRIx64 ": not in any scope\n", pc);
110 printf ("%#" PRIx64 ":\n", pc);
funcscopes.c 43 printf ("%s%#" PRIx64 " (%s:%d:%d)",
46 printf ("%s%#" PRIx64 " (%s:%d)",
50 printf ("%s%#" PRIx64, prefix, addr);
64 printf ("%*s%-30s[%6" PRIx64 "]\n", indent, "",
137 printf ("%s: %#" PRIx64 " .. %#" PRIx64 "\n", modname, start, end);
sectiondump.c 95 "flags = %" PRIx64 "\n"
96 "addr = %" PRIx64 "\n"
97 "offset = %" PRIx64 "\n"
101 "addralign = %" PRIx64 "\n"
175 printf ("%5zu: %*" PRIx64 " %6" PRIx64 " %4d\n",
low_high_pc.c 46 printf("%s: [%" PRIx64 "] '%s' %s\n", args->file, off, name, msg);
74 printf("lowpc: %" PRIx64 ", highpc: %" PRIx64 "lx\n", lowpc, highpc);
  /external/libchrome/base/
format_macros.h 47 #define WidePRIx64 PRIx64
83 #if !defined(PRId64) || !defined(PRIu64) || !defined(PRIx64)
  /external/v8/src/base/
format-macros.h 47 #define WidePRIx64 PRIx64
83 #if !defined(PRId64) || !defined(PRIu64) || !defined(PRIx64)
  /external/vboot_reference/futility/
vb1_helper.c 69 Debug(" config file size=0x%" PRIx64 "\n", *config_size);
172 Debug(" kernel16_start=0x%" PRIx64 "\n", 0);
173 Debug(" kernel16_size=0x%" PRIx64 "\n", kernel32_start);
204 Debug(" kernel32_start=0x%" PRIx64 "\n", kernel32_start);
205 Debug(" kernel32_size=0x%" PRIx64 "\n", kernel32_size);
242 Debug("vmlinuz_header_size = 0x%" PRIx64 "\n",
244 Debug("vmlinuz_header_ofs = 0x%" PRIx64 "\n", now);
255 Debug("bootloader_size = 0x%" PRIx64 "\n", g_bootloader_size);
256 Debug("bootloader_ofs = 0x%" PRIx64 "\n", now);
262 Debug("param_ofs = 0x%" PRIx64 "\n", now)
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugRangeList.cpp 50 ? "%08x %08" PRIx64 " %08" PRIx64 "\n"
51 : "%08x %016" PRIx64 " %016" PRIx64 "\n");
  /external/libunwind_llvm/src/
UnwindLevel1.c 80 "unwind_phase1(ex_ojb=%p): pc=0x%" PRIx64 ", start_ip=0x%" PRIx64
81 ", func=%s, lsda=0x%" PRIx64 ", personality=0x%" PRIx64 "\n",
175 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): start_ip=0x%" PRIx64
176 ", func=%s, sp=0x%" PRIx64 ", lsda=0x%" PRIx64
177 ", personality=0x%" PRIx64 "\n",
218 "user code with ip=0x%" PRIx64
219 ", sp=0x%" PRIx64 "\n"
    [all...]
  /external/libchrome/base/metrics/
metrics_hashes_unittest.cc 30 std::string hash_hex = base::StringPrintf("0x%016" PRIx64, hash);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindLevel1.c 73 "unwind_phase1(ex_ojb=%p): pc=0x%" PRIx64 ", start_ip=0x%" PRIx64
74 ", func=%s, lsda=0x%" PRIx64 ", personality=0x%" PRIx64 "\n",
168 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): start_ip=0x%" PRIx64
169 ", func=%s, sp=0x%" PRIx64 ", lsda=0x%" PRIx64
170 ", personality=0x%" PRIx64 "\n",
211 "user code with ip=0x%" PRIx64
212 ", sp=0x%" PRIx64 "\n"
    [all...]
  /external/strace/
bpf.c 84 tprintf(", key=%#" PRIx64 ", value=%#" PRIx64 ", flags=",
109 tprintf(", key=%#" PRIx64 "}", attr.key);
123 tprintf(", %s=%#" PRIx64, text, attr.value);
139 tprintf(", key=%#" PRIx64, attr.key);
166 tprintf(", insn_cnt=%u, insns=%#" PRIx64 ", license=",
169 tprintf(", log_level=%u, log_size=%u, log_buf=%#" PRIx64 ", kern_version=%u}",
  /system/core/toolbox/
nandread.c 193 printf("reading at %" PRIx64 "\n", pos);
197 fprintf(stderr, "short read at %" PRIx64 ", %d\n", pos, ret);
204 fprintf(stderr, "failed to read oob data at %" PRIx64 ", %d\n", pos, ret);
217 printf("badblock at %" PRIx64 "\n", pos);
221 printf("ecc corrected, %u, at %" PRIx64 "\n", ecc.corrected - last_ecc.corrected, pos);
223 printf("ecc failed, %u, at %" PRIx64 "\n", ecc.failed - last_ecc.failed, pos);
225 printf("ecc badblocks, %u, at %" PRIx64 "\n", ecc.badblocks - last_ecc.badblocks, pos);
227 printf("ecc bbtblocks, %u, at %" PRIx64 "\n", ecc.bbtblocks - last_ecc.bbtblocks, pos);
245 fprintf(stderr, "short write at %" PRIx64 ", %d\n", pos, ret);
250 fprintf(statusfile, "%08" PRIx64 ": ecc corrected\n", opos)
    [all...]

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>