Searched refs:IntBits (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | PointerIntPair.h | 41 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned, 48 static_assert(IntBits <= PtrTraits::NumLowBitsAvailable, 57 IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable - IntBits, 60 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1), 157 template<typename PointerTy, unsigned IntBits, typename IntType> 158 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > { 163 template<typename PointerTy, unsigned IntBits, typename IntType> 164 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType> > { 165 typedef PointerIntPair<PointerTy, IntBits, IntType> Ty; 184 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 | 7583 uint32_t IntBits = IntTy.getSizeInBits(); in performFpToIntCombine() local 7584 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFpToIntCombine() 7588 if (IntBits > FloatBits) in performFpToIntCombine() 7593 int32_t Bits = IntBits == 64 ? 64 : 32; in performFpToIntCombine() 7620 if (IntBits < FloatBits) in performFpToIntCombine() 7644 int32_t IntBits = IntTy.getSizeInBits(); in performFDivCombine() local 7645 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFDivCombine() 7654 if (IntBits > FloatBits) in performFDivCombine() 7679 if (IntBits < FloatBits) in performFDivCombine()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 9997 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVCVTCombine() local 9999 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { in PerformVCVTCombine() 10022 if (IntBits < FloatBits) in PerformVCVTCombine() 10055 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVDIVCombine() local 10057 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { in PerformVDIVCombine() 10074 if (IntBits < FloatBits) in PerformVDIVCombine()
|