Searched refs:HEXBASE (Results 1 – 2 of 2) sorted by relevance
16 #define HEXBASE '0' << 'x' << RAW_HEXBASE macro21 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x))22 #define HEX16 HEXBASE << std::setw(4)23 #define HEX32 HEXBASE << std::setw(8)24 #define HEX64 HEXBASE << std::setw(16)26 #define HEX(x) HEXBASE << std::setw(sizeof(x) * 2) << (x)27 #define HEX_SIZE(x, sz) HEXBASE << std::setw((sz)) << (x)
67 #define HEXBASE '0' << 'x' << RAW_HEXBASE macro72 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x))73 #define HEX16 HEXBASE << std::setw(4)74 #define HEX32 HEXBASE << std::setw(8)75 #define HEX64 HEXBASE << std::setw(16)77 #define HEX(x) HEXBASE << std::setw(sizeof(x) * 2) << (x)79 #define HEX_SIZE(x, sz) HEXBASE << std::setw((sz)) << (x)2881 ostrm << "memory:" << HEXBASE << stack_memory.first << '='; in SendStopReplyPacketForThread()