Searched refs:HEXBASE (Results 1 - 2 of 2) sorted by relevance

/external/lldb/include/lldb/Core/
H A DIOStreamMacros.h17 #define HEXBASE '0' << 'x' << RAW_HEXBASE macro
22 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x))
23 #define HEX16 HEXBASE << std::setw(4)
24 #define HEX32 HEXBASE << std::setw(8)
25 #define HEX64 HEXBASE << std::setw(16)
27 #define HEX(x) HEXBASE << std::setw(sizeof(x)*2) << (x)
28 #define HEX_SIZE(x, sz) HEXBASE << std::setw((sz)) << (x)
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp39 #define HEXBASE '0' << 'x' << RAW_HEXBASE macro
44 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x))
45 #define HEX16 HEXBASE << std::setw(4)
46 #define HEX32 HEXBASE << std::setw(8)
47 #define HEX64 HEXBASE << std::setw(16)
49 #define HEX(x) HEXBASE << std::setw(sizeof(x)*2) << (x)
51 #define HEX_SIZE(x, sz) HEXBASE << std::setw((sz)) << (x)

Completed in 1031 milliseconds