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

  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 367 /// Returns k such that lambda(2^Bitwidth) = 2^k, where lambda is the Carmichael
368 /// function. This means that x^(2^k) === 1 mod 2^Bitwidth for
369 /// every odd x, i.e. x^(2^k) = 1 for every odd x in Bitwidth-bit arithmetic.
370 /// Note that 0 <= k < Bitwidth, and if Bitwidth > 3 then x^(2^k) = 0 for every
371 /// even x in Bitwidth-bit arithmetic.
372 static unsigned CarmichaelShift(unsigned Bitwidth) {
373 if (Bitwidth < 3)
374 return Bitwidth - 1;
375 return Bitwidth - 2
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 140 unsigned Bitwidth, ElementBitwidth, NumVectors;
146 NoManglingQ(false), Bitwidth(0), ElementBitwidth(0), NumVectors(0) {}
151 NoManglingQ(false), Bitwidth(0), ElementBitwidth(0), NumVectors(0) {
183 unsigned getNumElements() const { return Bitwidth / ElementBitwidth; }
184 unsigned getSizeInBits() const { return Bitwidth; }
208 Bitwidth = ElementBitwidth;
216 assert_with_loc(Bitwidth != 128, "Can't get bigger than 128!");
217 Bitwidth = 128;
220 assert_with_loc(Bitwidth != 64, "Can't get smaller than 64!");
221 Bitwidth = 64
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 2041 milliseconds