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)
69 #define HEXBASE '0' << 'x' << RAW_HEXBASE macro74 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x))75 #define HEX16 HEXBASE << std::setw(4)76 #define HEX32 HEXBASE << std::setw(8)77 #define HEX64 HEXBASE << std::setw(16)79 #define HEX(x) HEXBASE << std::setw(sizeof(x) * 2) << (x)81 #define HEX_SIZE(x, sz) HEXBASE << std::setw((sz)) << (x)3010 ostrm << "memory:" << HEXBASE << stack_memory.first << '='; in SendStopReplyPacketForThread()