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

/external/lldb/include/lldb/Core/
H A DIOStreamMacros.h16 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
17 #define HEXBASE '0' << 'x' << RAW_HEXBASE
18 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)(x))
19 #define RAWHEX16 RAW_HEXBASE << std::setw(4)
20 #define RAWHEX32 RAW_HEXBASE << std::setw(8)
21 #define RAWHEX64 RAW_HEXBASE << std::setw(16)
26 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x)*2) << (x)
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp38 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
39 #define HEXBASE '0' << 'x' << RAW_HEXBASE
40 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)((uint8_t)x))
41 #define RAWHEX16 RAW_HEXBASE << std::setw(4)
42 #define RAWHEX32 RAW_HEXBASE << std::setw(8)
43 #define RAWHEX64 RAW_HEXBASE << std::setw(16)
48 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x)*2) << (x)
50 #define RAWHEX_SIZE(x, sz) RAW_HEXBASE << std::setw((sz)) << (x)
1380 ostrm << RAW_HEXBASE << shlib_info_addr;
1748 ostrm << RAW_HEXBASE << reg_entr
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.cpp294 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro
403 profile_data_stream << RAW_HEXBASE << std::setw(2);

Completed in 145 milliseconds