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 331 /// CarmichaelShift - Returns k such that lambda(2^Bitwidth) = 2^k, where lambda
332 /// is the Carmichael function. This means that x^(2^k) === 1 mod 2^Bitwidth for
333 /// every odd x, i.e. x^(2^k) = 1 for every odd x in Bitwidth-bit arithmetic.
334 /// Note that 0 <= k < Bitwidth, and if Bitwidth > 3 then x^(2^k) = 0 for every
335 /// even x in Bitwidth-bit arithmetic.
336 static unsigned CarmichaelShift(unsigned Bitwidth) {
337 if (Bitwidth < 3)
338 return Bitwidth - 1;
339 return Bitwidth - 2
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 138 unsigned Bitwidth, ElementBitwidth, NumVectors;
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 = 64
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 327 milliseconds