Searched refs:RAW_HEXBASE (Results 1 – 3 of 3) sorted by relevance
15 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro16 #define HEXBASE '0' << 'x' << RAW_HEXBASE17 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)(x))18 #define RAWHEX16 RAW_HEXBASE << std::setw(4)19 #define RAWHEX32 RAW_HEXBASE << std::setw(8)20 #define RAWHEX64 RAW_HEXBASE << std::setw(16)25 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x) * 2) << (x)
68 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro69 #define HEXBASE '0' << 'x' << RAW_HEXBASE70 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)((uint8_t)x))71 #define RAWHEX16 RAW_HEXBASE << std::setw(4)72 #define RAWHEX32 RAW_HEXBASE << std::setw(8)73 #define RAWHEX64 RAW_HEXBASE << std::setw(16)78 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x) * 2) << (x)80 #define RAWHEX_SIZE(x, sz) RAW_HEXBASE << std::setw((sz)) << (x)1659 ostrm << RAW_HEXBASE << shlib_info_addr; in HandlePacket_qShlibInfoAddr()2036 ostrm << RAW_HEXBASE << reg_entry->value_regnums[i]; in HandlePacket_qRegisterInfo()[all …]
299 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right macro405 profile_data_stream << RAW_HEXBASE << std::setw(2);