Searched refs:utype (Results 1 – 5 of 5) sorted by relevance
24 using utype = std::underlying_type_t<T>; \26 return static_cast<T>(~static_cast<utype>(a)); \31 using utype = std::underlying_type_t<T>; \33 return (!static_cast<utype>(a)); \38 using utype = std::underlying_type_t<T>; \40 return static_cast<T>(static_cast<utype>(a) | static_cast<utype>(b)); \45 using utype = std::underlying_type_t<T>; \47 return static_cast<utype>(static_cast<utype>(a) & static_cast<utype>(b)); \52 using utype = std::underlying_type_t<T>; \54 return static_cast<T>(static_cast<utype>(a) ^ static_cast<utype>(b)); \[all …]
42 using utype = std::underlying_type_t<OptionFlags>; variable44 return static_cast<utype>(static_cast<utype>(a) & static_cast<utype>(b));49 using utype = std::underlying_type_t<OptionFlags>; variable51 return a = static_cast<OptionFlags>(static_cast<utype>(a) | static_cast<utype>(b));
33 using utype = std::underlying_type_t<AsciiFlags>; in operator |() typedef34 return static_cast<AsciiFlags>(static_cast<utype>(a) | static_cast<utype>(b)); in operator |()39 using utype = std::underlying_type_t<AsciiFlags>; in operator &() typedef41 return static_cast<utype>(static_cast<utype>(a) & static_cast<utype>(b)); in operator &()
66 using utype = std::underlying_type_t<InstFlags>; variable67 return static_cast<InstFlags>(static_cast<utype>(a) | static_cast<utype>(b));
1213 using utype = std::underlying_type_t<Token::Type>; in TokenToOpcode() typedef1214 …return static_cast<Opcode>(static_cast<utype>(id) - static_cast<utype>(Token::Type::OPERATION) - 1… in TokenToOpcode()