Lines Matching refs:getBitWidth
150 reallocate(RHS.getBitWidth()); in AssignSlowCase()
236 APInt Result(getMemory(getNumWords()), getBitWidth()); in operator *()
347 unsigned subBitWidth = subBits.getBitWidth(); in insertBits()
503 assert(getBitWidth() % SplatSizeInBits == 0 && in isSplat()
524 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
527 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
980 unsigned rotBitWidth = rotateAmt.getBitWidth(); in rotateModulo()
987 rot = rot.urem(APInt(rot.getBitWidth(), BitWidth)); in rotateModulo()
1149 APInt signedMin = APInt::getSignedMinValue(d.getBitWidth()); in magic()
1153 t = signedMin + (d.lshr(d.getBitWidth() - 1)); in magic()
1155 p = d.getBitWidth() - 1; // initialize p in magic()
1179 mag.s = p - d.getBitWidth(); // resulting shift in magic()
1195 APInt allOnes = APInt::getAllOnesValue(d.getBitWidth()).lshr(LeadingZeros); in magicu()
1196 APInt signedMin = APInt::getSignedMinValue(d.getBitWidth()); in magicu()
1197 APInt signedMax = APInt::getSignedMaxValue(d.getBitWidth()); in magicu()
1200 p = d.getBitWidth() - 1; // initialize p in magicu()
1226 } while (p < d.getBitWidth()*2 && in magicu()
1229 magu.s = p - d.getBitWidth(); // resulting shift in magicu()
1928 Overflow = ShAmt.uge(getBitWidth()); in sshl_ov()
1941 Overflow = ShAmt.uge(getBitWidth()); in ushl_ov()
2740 unsigned CoeffWidth = A.getBitWidth(); in SolveQuadraticEquationWrap()
2741 assert(CoeffWidth == B.getBitWidth() && CoeffWidth == C.getBitWidth()); in SolveQuadraticEquationWrap()