Home
last modified time | relevance | path

Searched refs:RAW_HEXBASE (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOStreamMacros.h15 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
16 #define HEXBASE '0' << 'x' << RAW_HEXBASE
17 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)(x))
18 #define RAWHEX16 RAW_HEXBASE << std::setw(4)
19 #define RAWHEX32 RAW_HEXBASE << std::setw(8)
20 #define RAWHEX64 RAW_HEXBASE << std::setw(16)
25 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x) * 2) << (x)
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp66 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
67 #define HEXBASE '0' << 'x' << RAW_HEXBASE
69 #define RAWHEX16 RAW_HEXBASE << std::setw(4)
70 #define RAWHEX32 RAW_HEXBASE << std::setw(8)
71 #define RAWHEX64 RAW_HEXBASE << std::setw(16)
76 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x) * 2) << (x)
78 #define RAWHEX_SIZE(x, sz) RAW_HEXBASE << std::setw((sz)) << (x)
1577 ostrm << RAW_HEXBASE << shlib_info_addr; in HandlePacket_qShlibInfoAddr()
1954 ostrm << RAW_HEXBASE << reg_entry->value_regnums[i]; in HandlePacket_qRegisterInfo()
2953 exit_packet << RAW_HEXBASE << "description"; in HandlePacket_last_signal()
[all …]
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.mm299 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
405 profile_data_stream << RAW_HEXBASE << std::setw(2);