Searched refs:IntT (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | PointerEmbeddedInt.h | 33 template <typename IntT, int Bits = sizeof(IntT) * CHAR_BIT> 62 PointerEmbeddedInt(IntT I) { *this = I; } 64 PointerEmbeddedInt &operator=(IntT I) { 73 operator IntT() const { 74 if (std::is_signed<IntT>::value) 76 return static_cast<IntT>(Value >> Shift); 82 template <typename IntT, int Bits> 84 using T = PointerEmbeddedInt<IntT, Bits>; 103 template <typename IntT, int Bits> 105 using T = PointerEmbeddedInt<IntT, Bits>; [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | ScaledNumber.h | 541 template <class IntT> IntT toInt() const; 780 template <class IntT> 781 IntT ScaledNumber<DigitsT>::toInt() const { in toInt() 782 typedef std::numeric_limits<IntT> Limits; in toInt() 788 IntT N = Digits; in toInt() 790 assert(size_t(Scale) < sizeof(IntT) * 8); in toInt() 794 assert(size_t(-Scale) < sizeof(IntT) * 8); in toInt()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfReader.h | 226 template <class IntT> IntT swap(IntT Int) const { in swap()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 11311 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, const QualType &IntT) { in checkOpenCLEnqueueIntType() argument 11321 CheckImplicitConversion(S, E, IntT, E->getBeginLoc()); in checkOpenCLEnqueueIntType()
|