Lines Matching refs:getBitWidth

149   reallocate(RHS.getBitWidth());  in AssignSlowCase()
235 APInt Result(getMemory(getNumWords()), getBitWidth()); in operator *()
345 unsigned subBitWidth = subBits.getBitWidth(); in insertBits()
558 assert(getBitWidth() % SplatSizeInBits == 0 && in isSplat()
579 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
582 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
1062 unsigned rotBitWidth = rotateAmt.getBitWidth(); in rotateModulo()
1069 rot = rot.urem(APInt(rot.getBitWidth(), BitWidth)); in rotateModulo()
1233 APInt signedMin = APInt::getSignedMinValue(d.getBitWidth()); in magic()
1237 t = signedMin + (d.lshr(d.getBitWidth() - 1)); in magic()
1239 p = d.getBitWidth() - 1; // initialize p in magic()
1263 mag.s = p - d.getBitWidth(); // resulting shift in magic()
1279 APInt allOnes = APInt::getAllOnesValue(d.getBitWidth()).lshr(LeadingZeros); in magicu()
1280 APInt signedMin = APInt::getSignedMinValue(d.getBitWidth()); in magicu()
1281 APInt signedMax = APInt::getSignedMaxValue(d.getBitWidth()); in magicu()
1284 p = d.getBitWidth() - 1; // initialize p in magicu()
1310 } while (p < d.getBitWidth()*2 && in magicu()
1313 magu.s = p - d.getBitWidth(); // resulting shift in magicu()
2019 Overflow = ShAmt.uge(getBitWidth()); in sshl_ov()
2032 Overflow = ShAmt.uge(getBitWidth()); in ushl_ov()
2863 unsigned CoeffWidth = A.getBitWidth(); in SolveQuadraticEquationWrap()
2864 assert(CoeffWidth == B.getBitWidth() && CoeffWidth == C.getBitWidth()); in SolveQuadraticEquationWrap()
3052 assert(A.getBitWidth() == B.getBitWidth() && "Must have the same bitwidth"); in GetMostSignificantDifferentBit()
3055 return A.getBitWidth() - ((A ^ B).countLeadingZeros() + 1); in GetMostSignificantDifferentBit()
3062 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
3088 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory()