HomeSort by relevance Sort by last modified time
    Searched refs:RAW_HEXBASE (Results 1 - 3 of 3) sorted by null

  /external/lldb/include/lldb/Core/
IOStreamMacros.h 16 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right
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/
RNBRemote.cpp 38 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right
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)
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachTask.cpp 294 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right
403 profile_data_stream << RAW_HEXBASE << std::setw(2);
    [all...]

Completed in 137 milliseconds