Home
last modified time | relevance | path

Searched refs:utype (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_frontend/es2panda/util/
Denumbitops.h24 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 …]
/arkcompiler/ets_frontend/es2panda/aot/
Doptions.h42 using utype = std::underlying_type_t<OptionFlags>; variable
44 return static_cast<utype>(static_cast<utype>(a) & static_cast<utype>(b));
49 using utype = std::underlying_type_t<OptionFlags>; variable
51 return a = static_cast<OptionFlags>(static_cast<utype>(a) | static_cast<utype>(b));
/arkcompiler/ets_frontend/es2panda/lexer/
DkeywordsUtil.cpp33 using utype = std::underlying_type_t<AsciiFlags>; in operator |() typedef
34 return static_cast<AsciiFlags>(static_cast<utype>(a) | static_cast<utype>(b)); in operator |()
39 using utype = std::underlying_type_t<AsciiFlags>; in operator &() typedef
41 return static_cast<utype>(static_cast<utype>(a) & static_cast<utype>(b)); in operator &()
/arkcompiler/runtime_core/assembler/
Dassembly-ins.h66 using utype = std::underlying_type_t<InstFlags>; variable
67 return static_cast<InstFlags>(static_cast<utype>(a) | static_cast<utype>(b));
Dassembly-parser.cpp1213 using utype = std::underlying_type_t<Token::Type>; in TokenToOpcode() typedef
1214 …return static_cast<Opcode>(static_cast<utype>(id) - static_cast<utype>(Token::Type::OPERATION) - 1… in TokenToOpcode()