Searched refs:Bitwidth (Results 1 - 7 of 7) sorted by relevance

/external/clang/utils/TableGen/
H A DNeonEmitter.cpp138 unsigned Bitwidth, ElementBitwidth, NumVectors; member in class:__anon2837::Type
144 Bitwidth(0), ElementBitwidth(0), NumVectors(0) {}
149 NoManglingQ(false), Bitwidth(0), ElementBitwidth(0), NumVectors(0) {
180 unsigned getNumElements() const { return Bitwidth / ElementBitwidth; }
181 unsigned getSizeInBits() const { return Bitwidth; }
197 Bitwidth = ElementBitwidth;
205 assert_with_loc(Bitwidth != 128, "Can't get bigger than 128!");
206 Bitwidth = 128;
209 assert_with_loc(Bitwidth != 64, "Can't get smaller than 64!");
210 Bitwidth
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp400 /// CarmichaelShift - Returns k such that lambda(2^Bitwidth) = 2^k, where lambda
401 /// is the Carmichael function. This means that x^(2^k) === 1 mod 2^Bitwidth for
402 /// every odd x, i.e. x^(2^k) = 1 for every odd x in Bitwidth-bit arithmetic.
403 /// Note that 0 <= k < Bitwidth, and if Bitwidth > 3 then x^(2^k) = 0 for every
404 /// even x in Bitwidth-bit arithmetic.
405 static unsigned CarmichaelShift(unsigned Bitwidth) { argument
406 if (Bitwidth < 3)
407 return Bitwidth - 1;
408 return Bitwidth
457 unsigned Bitwidth = LHS.getBitWidth(); local
570 unsigned Bitwidth = I->getType()->getScalarType()->getPrimitiveSizeInBits(); local
[all...]
/external/llvm/include/llvm/IR/
H A DType.h196 bool isIntegerTy(unsigned Bitwidth) const;
/external/llvm/lib/IR/
H A DType.cpp58 bool Type::isIntegerTy(unsigned Bitwidth) const {
59 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1091 unsigned Bitwidth = LTy->getScalarSizeInBits(); local
1097 assert(NumBits <= Bitwidth);
1098 End = llvm::APInt(Bitwidth, 1) << (NumBits - 1);
1101 assert(NumPositiveBits <= Bitwidth);
1102 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
1103 Min = llvm::APInt(Bitwidth, 0);
/external/clang/tools/c-index-test/
H A Dc-index-test.c1430 /* Bitwidth testing. */
1435 int Bitwidth; local
1439 Bitwidth = clang_getFieldDeclBitWidth(cursor);
1440 if (Bitwidth >= 0) {
1442 printf(" bitwidth=%d\n", Bitwidth);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp1786 unsigned Bitwidth = Op.getValueType().getScalarType().getSizeInBits(); local
1788 UsefulBits = APInt(Bitwidth, 0);

Completed in 297 milliseconds