Searched refs:PowerOfTwo (Results 1 - 2 of 2) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp282 /// is, and assigns to PowerOfTwo the power of two that should be extracted
285 unsigned &PowerOfTwo, SDValue &NewMulConst) const;
501 unsigned &PowerOfTwo,
519 PowerOfTwo = MaxShift;
520 while ((MulConstVal % (1 << PowerOfTwo)) != 0) {
521 --PowerOfTwo;
522 if (PowerOfTwo == 0) return false;
526 unsigned NewMulConstVal = MulConstVal / (1 << PowerOfTwo);
548 unsigned PowerOfTwo = 0; local
550 if (canExtractShiftFromMul(N, 31, PowerOfTwo, NewMulCons
499 canExtractShiftFromMul(const SDValue &N, unsigned MaxShift, unsigned &PowerOfTwo, SDValue &NewMulConst) const argument
751 unsigned PowerOfTwo = 0; local
1426 unsigned PowerOfTwo = 0; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp801 bool PowerOfTwo = true; local
807 PowerOfTwo = false;
817 if (PowerOfTwo && EnumVal) {
819 PowerOfTwo = false;
837 return AllHexdecimalEnumerator || (PowerOfTwo && (MaxPowerOfTwoVal > 2));

Completed in 70 milliseconds