Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Core/
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)
/external/llvm-project/lldb/tools/debugserver/source/
DRNBRemote.cpp68 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
69 #define HEXBASE '0' << 'x' << RAW_HEXBASE
70 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)((uint8_t)x))
71 #define RAWHEX16 RAW_HEXBASE << std::setw(4)
72 #define RAWHEX32 RAW_HEXBASE << std::setw(8)
73 #define RAWHEX64 RAW_HEXBASE << std::setw(16)
78 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x) * 2) << (x)
80 #define RAWHEX_SIZE(x, sz) RAW_HEXBASE << std::setw((sz)) << (x)
1659 ostrm << RAW_HEXBASE << shlib_info_addr; in HandlePacket_qShlibInfoAddr()
2036 ostrm << RAW_HEXBASE << reg_entry->value_regnums[i]; in HandlePacket_qRegisterInfo()
[all …]
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachTask.mm299 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
405 profile_data_stream << RAW_HEXBASE << std::setw(2);