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

  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 802 bool PowerOfTwo = true;
808 PowerOfTwo = false;
818 if (PowerOfTwo && EnumVal) {
820 PowerOfTwo = false;
838 return AllHexdecimalEnumerator || (PowerOfTwo && (MaxPowerOfTwoVal > 2));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 278 /// is, and assigns to PowerOfTwo the power of two that should be extracted
281 unsigned &PowerOfTwo, SDValue &NewMulConst) const;
494 unsigned &PowerOfTwo,
512 PowerOfTwo = MaxShift;
513 while ((MulConstVal % (1 << PowerOfTwo)) != 0) {
514 --PowerOfTwo;
515 if (PowerOfTwo == 0) return false;
519 unsigned NewMulConstVal = MulConstVal / (1 << PowerOfTwo);
541 unsigned PowerOfTwo = 0;
543 if (canExtractShiftFromMul(N, 31, PowerOfTwo, NewMulConst))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 254 /// is, and assigns to PowerOfTwo the power of two that should be extracted
257 unsigned &PowerOfTwo, SDValue &NewMulConst) const;
472 unsigned &PowerOfTwo,
490 PowerOfTwo = MaxShift;
491 while ((MulConstVal % (1 << PowerOfTwo)) != 0) {
492 --PowerOfTwo;
493 if (PowerOfTwo == 0) return false;
497 unsigned NewMulConstVal = MulConstVal / (1 << PowerOfTwo);
519 unsigned PowerOfTwo = 0;
521 if (canExtractShiftFromMul(N, 31, PowerOfTwo, NewMulConst))
    [all...]

Completed in 109 milliseconds