HomeSort by relevance Sort by last modified time
    Searched refs:Bitwidth (Results 1 - 18 of 18) sorted by null

  /external/clang/utils/TableGen/
NeonEmitter.cpp 141 unsigned Bitwidth, ElementBitwidth, NumVectors;
147 NoManglingQ(false), Bitwidth(0), ElementBitwidth(0), NumVectors(0) {}
152 ScalarForMangling(false), NoManglingQ(false), Bitwidth(0),
185 unsigned getNumElements() const { return Bitwidth / ElementBitwidth; }
186 unsigned getSizeInBits() const { return Bitwidth; }
210 Bitwidth = ElementBitwidth;
218 assert_with_loc(Bitwidth != 128, "Can't get bigger than 128!");
219 Bitwidth = 128;
222 assert_with_loc(Bitwidth != 64, "Can't get smaller than 64!");
223 Bitwidth = 64
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 266 /// Returns k such that lambda(2^Bitwidth) = 2^k, where lambda is the Carmichael
267 /// function. This means that x^(2^k) === 1 mod 2^Bitwidth for
268 /// every odd x, i.e. x^(2^k) = 1 for every odd x in Bitwidth-bit arithmetic.
269 /// Note that 0 <= k < Bitwidth, and if Bitwidth > 3 then x^(2^k) = 0 for every
270 /// even x in Bitwidth-bit arithmetic.
271 static unsigned CarmichaelShift(unsigned Bitwidth) {
272 if (Bitwidth < 3)
273 return Bitwidth - 1;
274 return Bitwidth - 2
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Type.h 164 bool isIntegerTy(unsigned Bitwidth) const;
  /external/llvm/include/llvm/IR/
Type.h 196 bool isIntegerTy(unsigned Bitwidth) const;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Type.h 198 bool isIntegerTy(unsigned Bitwidth) const;
  /external/llvm/lib/IR/
Type.cpp 50 bool Type::isIntegerTy(unsigned Bitwidth) const {
51 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
235 assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
236 assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
259 unsigned BitWidth = getBitWidth();
260 return (BitWidth > 7) && isPowerOf2_32(BitWidth);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Type.cpp 50 bool Type::isIntegerTy(unsigned Bitwidth) const {
51 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
274 assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
275 assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
297 unsigned BitWidth = getBitWidth();
298 return (BitWidth > 7) && isPowerOf2_32(BitWidth);
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]

Completed in 599 milliseconds