/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/ |
D | Range.h | 17 #define HEX8(v) llvm::format_hex(v, 4) 18 #define HEX16(v) llvm::format_hex(v, 6) 19 #define HEX32(v) llvm::format_hex(v, 10) 20 #define HEX64(v) llvm::format_hex(v, 18)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | Header.cpp | 15 #define HEX8(v) llvm::format_hex(v, 4) 16 #define HEX16(v) llvm::format_hex(v, 6) 17 #define HEX32(v) llvm::format_hex(v, 10) 18 #define HEX64(v) llvm::format_hex(v, 18)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLoc.cpp | 272 OS << '(' << format_hex(Value0, 2 + Data.getAddressSize() * 2) << ", " in dumpRawEntry() 273 << format_hex(Value1, 2 + Data.getAddressSize() * 2) << ')'; in dumpRawEntry() 370 OS << format_hex(Entry.Value0, FieldSize) << ", " in dumpRawEntry() 371 << format_hex(Entry.Value1, FieldSize); in dumpRawEntry() 375 OS << format_hex(Entry.Value0, FieldSize); in dumpRawEntry()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | FaultMaps.cpp | 130 OS << "FunctionAddress: " << format_hex(FI.getFunctionAddr(), 8) in operator <<() 138 OS << "Version: " << format_hex(FMP.getFaultMapVersion(), 2) << "\n"; in operator <<()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Signals.cpp | 62 return format_hex((uint64_t)PC, PtrWidth); in format_ptr() 171 OS << "(" << Modules[i] << '+' << format_hex(Offsets[i], 0) << ")"; in printSymbolizedStackTrace()
|
/third_party/nghttp2/src/ |
D | util.h | 184 std::string format_hex(const unsigned char *s, size_t len); 186 template <size_t N> std::string format_hex(const unsigned char (&s)[N]) { in format_hex() function 187 return format_hex(s, N); in format_hex() 190 template <size_t N> std::string format_hex(const std::array<uint8_t, N> &s) { in format_hex() function 191 return format_hex(s.data(), s.size()); in format_hex() 194 StringRef format_hex(BlockAllocator &balloc, const StringRef &s); 199 OutputIt format_hex(OutputIt it, const StringRef &s) { in format_hex() function
|
D | shrpx_log_config.cc | 55 thread_id = util::format_hex(reinterpret_cast<uint8_t *>(&tid_hash), in LogConfig()
|
D | shrpx_tls.cc | 412 LOG(INFO) << "Memcached: cache session, id=" << util::format_hex(id, idlen); in tls_session_new_cb() 419 util::format_hex(balloc, StringRef{id, static_cast<size_t>(idlen)}); in tls_session_new_cb() 469 << util::format_hex(id, idlen); in tls_session_get_cb() 482 << util::format_hex(id, idlen); in tls_session_get_cb() 489 util::format_hex(balloc, StringRef{id, static_cast<size_t>(idlen)}); in tls_session_get_cb() 567 << util::format_hex(key.data.name); in ticket_key_cb() 608 << util::format_hex(key_name, 16) << " not found"; in ticket_key_cb() 615 << util::format_hex(key_name, 16); in ticket_key_cb() 2615 return util::format_hex(balloc, StringRef{b.data(), static_cast<size_t>(n)}); in get_x509_serial()
|
D | app_helper.cc | 120 s += util::format_hex(&type, 1); in strframetype() 334 util::format_hex(frame->ping.opaque_data, 8).c_str()); in print_frame()
|
D | shrpx_quic_connection_handler.cc | 634 << " dcid=" << util::format_hex(dcid, dcidlen); in send_stateless_reset() 662 << " dcid=" << util::format_hex(ini_scid.data, ini_scid.datalen) in send_connection_close() 663 << " scid=" << util::format_hex(ini_dcid.data, ini_dcid.datalen); in send_connection_close()
|
D | shrpx_mruby_module_env.cc | 177 auto f = util::format_hex(balloc, in env_get_tls_client_fingerprint_md() 408 auto id = util::format_hex(balloc, StringRef{session_id, session_id_length}); in env_get_tls_session_id()
|
D | shrpx_worker_process.cc | 271 << util::format_hex(ticket_keys->keys[0].data.name); in renew_ticket_key_cb() 274 LOG(INFO) << i << " dec: " << util::format_hex(key.data.name); in renew_ticket_key_cb()
|
D | shrpx_http.cc | 196 p = util::format_hex(p, in create_affinity_cookie()
|
D | util_test.cc | 595 util::format_hex(balloc, StringRef::from_lit("\x0f\xf0"))); in test_util_format_hex() 596 CU_ASSERT("" == util::format_hex(balloc, StringRef::from_lit(""))); in test_util_format_hex()
|
D | shrpx_connection_handler.cc | 913 << util::format_hex(ticket_keys->keys[0].data.name); in on_tls_ticket_key_get_success() 916 LOG(INFO) << i << " dec: " << util::format_hex(key.data.name); in on_tls_ticket_key_get_success()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Signals.cpp | 101 return format_hex((uint64_t)PC, PtrWidth); in format_ptr() 211 OS << "(" << Modules[i] << '+' << format_hex(Offsets[i], 0) << ")"; in printSymbolizedStackTrace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | ResourceManager.cpp | 95 dbgs() << "MASK=" << format_hex(ResourceMask, 16) in dump() 96 << ", SZMASK=" << format_hex(ResourceSizeMask, 16) in dump() 97 << ", RDYMASK=" << format_hex(ReadyMask, 16) in dump()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
D | InstrBuilder.cpp | 187 dbgs() << "\t\tResource Mask=" << format_hex(R.first, 16) << ", " in initializeUsedResources() 194 dbgs() << "\t\tBuffer Mask=" << format_hex(Current, 16) << '\n'; in initializeUsedResources() 197 dbgs() << "\t\t Used Units=" << format_hex(ID.UsedProcResUnits, 16) << '\n'; in initializeUsedResources() 198 dbgs() << "\t\tUsed Groups=" << format_hex(ID.UsedProcResGroups, 16) in initializeUsedResources()
|
D | Support.cpp | 76 << format_hex(Masks[I],16) << " - " in computeProcResourceMasks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeAnalyzer.cpp | 480 << " Magic=" << format_hex(Magic, 10) in analyzeHeader() 481 << " Version=" << format_hex(Version, 10) in analyzeHeader() 482 << " Offset=" << format_hex(Offset, 10) in analyzeHeader() 483 << " Size=" << format_hex(Size, 10) in analyzeHeader() 484 << " CPUType=" << format_hex(CPUType, 10) << "/>\n"; in analyzeHeader()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Format.h | 177 inline FormattedNumber format_hex(uint64_t N, unsigned Width,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | ObjectFile.cpp | 36 OS << "SectionedAddress{" << format_hex(Addr.Address, 10); in operator <<()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Format.h | 186 inline FormattedNumber format_hex(uint64_t N, unsigned Width,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
D | ExecuteStage.cpp | 136 << format_hex(Mask, 16) << '\n'); in cycleEnd()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | MachO.h | 620 ss << format_hex(platform, 8, true); in getBuildPlatform() 633 ss << format_hex(tools, 8, true); in getBuildTool()
|