Searched defs:PrimConv (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DPrimType.h42 template <> struct PrimConv<PT_Sint8> { using T = Integral<8, true>; }; struct in namespace:clang::interp
43 template <> struct PrimConv<PT_Uint8> { using T = Integral<8, false>; }; struct in namespace:clang::interp
44 template <> struct PrimConv<PT_Sint16> { using T = Integral<16, true>; }; struct in namespace:clang::interp
45 template <> struct PrimConv<PT_Uint16> { using T = Integral<16, false>; }; struct in namespace:clang::interp
46 template <> struct PrimConv<PT_Sint32> { using T = Integral<32, true>; }; struct in namespace:clang::interp
47 template <> struct PrimConv<PT_Uint32> { using T = Integral<32, false>; }; struct in namespace:clang::interp
48 template <> struct PrimConv<PT_Sint64> { using T = Integral<64, true>; }; struct in namespace:clang::interp
49 template <> struct PrimConv<PT_Uint64> { using T = Integral<64, false>; }; struct in namespace:clang::interp
50 template <> struct PrimConv<PT_Boo struct in namespace:clang::interp
51 template <> struct PrimConv<PT_Ptr> { using T = Pointer; }; struct in namespace:clang::interp
[all...]

Completed in 261 milliseconds