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

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DConstantRange.h77 /// getBitWidth - get the bit width of this ConstantRange
79 uint32_t getBitWidth() const { return Lower.getBitWidth(); } function in class:llvm::ConstantRange
/external/llvm/include/llvm/IR/
H A DConstantRange.h132 uint32_t getBitWidth() const { return Lower.getBitWidth(); } function in class:llvm::ConstantRange
H A DDerivedTypes.h62 unsigned getBitWidth() const { return getSubclassData(); } function in class:llvm::IntegerType
67 return ~uint64_t(0UL) >> (64-getBitWidth());
73 return 1ULL << (getBitWidth()-1);
94 return cast<IntegerType>(this)->getBitWidth();
428 unsigned getBitWidth() const { function in class:llvm::VectorType
H A DConstants.h131 /// getBitWidth - Return the bitwidth of this constant.
132 unsigned getBitWidth() const { return Val.getBitWidth(); } function in class:llvm::final
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 uint32_t getBitWidth() const { return BitWidth; } function in class:clang::ento::APSIntType
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DTGValueTypes.cpp37 return getBitWidth();
39 unsigned getBitWidth() const { function in class:ExtendedIntegerType
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVType.cpp63 SPIRVType::getBitWidth() const { function in class:SPIRV::SPIRVType
65 return getVectorComponentType()->getBitWidth();
74 return static_cast<const SPIRVTypeFloat *const>(this)->getBitWidth();
83 return static_cast<const SPIRVTypeInt *const>(this)->getBitWidth();
H A DSPIRVType.h69 unsigned getBitWidth() const;
141 unsigned getBitWidth() const { return BitWidth;} function in class:SPIRV::SPIRVTypeInt
172 unsigned getBitWidth() const { return BitWidth;} function in class:SPIRV::SPIRVTypeFloat
740 return static_cast<const T2*>(Ty)->getBitWidth() == Bits;
/external/swiftshader/third_party/LLVM/include/llvm/
H A DDerivedTypes.h60 unsigned getBitWidth() const { return getSubclassData(); } function in class:llvm::IntegerType
66 return ~uint64_t(0UL) >> (64-getBitWidth());
72 return 1ULL << (getBitWidth()-1);
411 unsigned getBitWidth() const { function in class:llvm::VectorType
H A DConstants.h104 /// getBitWidth - Return the bitwidth of this constant.
105 unsigned getBitWidth() const { return Val.getBitWidth(); } function in class:llvm::ConstantInt
/external/clang/lib/Lex/
H A DPPExpressions.cpp48 unsigned getBitWidth() const { return Val.getBitWidth(); } function in class:__anon1738::PPValue
366 if (Result.Val.getBitWidth() > Val.getBitWidth()) {
367 Result.Val = Val.extend(Result.Val.getBitWidth());
369 assert(Result.Val.getBitWidth() == Val.getBitWidth() &&
561 PPValue RHS(LHS.getBitWidth());
603 llvm::APSInt Res(LHS.getBitWidth());
674 if (ShAmt >= LHS.getBitWidth()) {
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DDerivedTypes.h65 unsigned getBitWidth() const { return getSubclassData(); } function in class:llvm::IntegerType
70 return ~uint64_t(0UL) >> (64-getBitWidth());
76 return 1ULL << (getBitWidth()-1);
97 return cast<IntegerType>(this)->getBitWidth();
428 unsigned getBitWidth() const { function in class:llvm::VectorType
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp363 unsigned getBitWidth() const { return BitWidth; } function in class:__anon15127::FilterChooser
2280 emitTable(OS, TableInfo.Table, 0, FC.getBitWidth(), Opc.first.first);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DValueTracking.cpp35 /// getBitWidth - Returns the bitwidth of the given scalar or pointer type (if
37 static unsigned getBitWidth(Type *Ty, const TargetData *TD) { function
65 unsigned BitWidth = Mask.getBitWidth();
72 KnownZero.getBitWidth() == BitWidth &&
73 KnownOne.getBitWidth() == BitWidth &&
697 unsigned BitWidth = getBitWidth(V->getType(), TD);
773 unsigned BitWidth = getBitWidth(V->getType(), TD);
880 APInt KnownZero(Mask.getBitWidth(), 0), KnownOne(Mask.getBitWidth(), 0);
1063 Mask <<= Mask.getBitWidth()
[all...]
/external/llvm/lib/Analysis/
H A DValueTracking.cpp56 static unsigned getBitWidth(Type *Ty, const DataLayout &DL) { function
141 APInt LHSKnownZero(IT->getBitWidth(), 0), LHSKnownOne(IT->getBitWidth(), 0);
142 APInt RHSKnownZero(IT->getBitWidth(), 0), RHSKnownOne(IT->getBitWidth(), 0);
245 unsigned BitWidth = KnownZero.getBitWidth();
263 unsigned BitWidth = KnownZero.getBitWidth();
318 unsigned BitWidth = KnownZero.getBitWidth();
377 unsigned BitWidth = KnownZero.getBitWidth();
527 unsigned BitWidth = KnownZero.getBitWidth();
[all...]

Completed in 561 milliseconds