Searched refs:AsHex (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/ |
D | ostreams.h | 96 struct AsHex { struct 97 explicit AsHex(uint64_t v, uint8_t min_width = 1, bool with_prefix = false) 152 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, const AsHex& v);
|
D | ostreams.cc | 139 std::ostream& operator<<(std::ostream& os, const AsHex& hex) { in operator <<() 157 os << AsHex((hex.value >> (8 * printed_byte)) & 0xFF, 2); in operator <<()
|
D | objects-printer.cc | 1747 os << "\n - memory_mask: " << AsHex(memory_mask()); in WasmInstanceObjectPrint()
|
D | objects.cc | 3348 os << AsHex(reinterpret_cast<Address>(this), kPointerHexDigits, true) << " "; in HeapObjectShortPrint()
|
/external/v8/src/wasm/ |
D | function-body-decoder.cc | 946 os << (locals == body.start ? "0x" : " 0x") << AsHex(*locals, 2) << ","; in PrintRawWasmCode() 991 os << " 0x" << AsHex(i.pc()[1], 2) << ","; in PrintRawWasmCode() 997 os << " 0x" << AsHex(i.pc()[j], 2) << ","; in PrintRawWasmCode()
|