Searched refs:IntBits (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | PointerIntPair.h | 39 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned, 50 IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable-IntBits, 53 IntMask = (uintptr_t)(((intptr_t)1 << IntBits)-1), 61 assert(IntBits <= PtrTraits::NumLowBitsAvailable && in PointerIntPair() 87 assert(IntVal < (1 << IntBits) && "Integer too large for field"); in setInt() 117 template<typename PointerTy, unsigned IntBits, typename IntType> 118 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > { 123 template<typename PointerTy, unsigned IntBits, typename IntType> 124 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType> > { 125 typedef PointerIntPair<PointerTy, IntBits, IntType> Ty; [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | PointerIntPair.h | 26 template <typename PointerT, unsigned IntBits, typename PtrTraits> 43 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned, 45 typename Info = PointerIntPairInfo<PointerTy, IntBits, PtrTraits>> 124 template <typename PointerT, unsigned IntBits, typename PtrTraits> 129 static_assert(IntBits <= PtrTraits::NumLowBitsAvailable, 138 IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable - IntBits, 141 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1), 175 template <typename PointerTy, unsigned IntBits, typename IntType> 176 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType>> { 181 template <typename PointerTy, unsigned IntBits, typename IntType> [all …]
|
/external/llvm/include/llvm/ADT/ |
D | PointerIntPair.h | 26 template <typename PointerT, unsigned IntBits, typename PtrTraits> 43 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned, 45 typename Info = PointerIntPairInfo<PointerTy, IntBits, PtrTraits>> 124 template <typename PointerT, unsigned IntBits, typename PtrTraits> 129 static_assert(IntBits <= PtrTraits::NumLowBitsAvailable, 138 IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable - IntBits, 141 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1), 175 template <typename PointerTy, unsigned IntBits, typename IntType> 176 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType>> { 181 template <typename PointerTy, unsigned IntBits, typename IntType> [all …]
|
/external/clang/test/SemaTemplate/ |
D | instantiate-enum-2.cpp | 4 template<int IntBits> struct X { 6 IntShift = (unsigned long long)IntBits,
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 7706 uint32_t IntBits = IntTy.getSizeInBits(); in performFpToIntCombine() local 7707 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFpToIntCombine() 7711 if (IntBits > FloatBits) in performFpToIntCombine() 7716 int32_t Bits = IntBits == 64 ? 64 : 32; in performFpToIntCombine() 7749 if (IntBits < FloatBits) in performFpToIntCombine() 7773 int32_t IntBits = IntTy.getSizeInBits(); in performFDivCombine() local 7774 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFDivCombine() 7783 if (IntBits > FloatBits) in performFDivCombine() 7808 if (IntBits < FloatBits) in performFDivCombine()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 10407 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVCVTCombine() local 10409 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { in PerformVCVTCombine() 10432 if (IntBits < FloatBits) in PerformVCVTCombine() 10465 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVDIVCombine() local 10467 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { in PerformVDIVCombine() 10484 if (IntBits < FloatBits) in PerformVDIVCombine()
|