Home
last modified time | relevance | path

Searched refs:AsHex (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dostreams.h96 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);
Dostreams.cc139 std::ostream& operator<<(std::ostream& os, const AsHex& hex) { in operator <<()
157 os << AsHex((hex.value >> (8 * printed_byte)) & 0xFF, 2); in operator <<()
Dobjects-printer.cc1747 os << "\n - memory_mask: " << AsHex(memory_mask()); in WasmInstanceObjectPrint()
Dobjects.cc3348 os << AsHex(reinterpret_cast<Address>(this), kPointerHexDigits, true) << " "; in HeapObjectShortPrint()
/external/v8/src/wasm/
Dfunction-body-decoder.cc946 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()