Lines Matching refs:getBitWidth
145 reallocate(RHS.getBitWidth()); in assignSlowCase()
239 APInt Result(getMemory(getNumWords()), getBitWidth()); in operator *()
354 unsigned NewWidth = getBitWidth() + NewLSB.getBitWidth(); in concatSlowCase()
356 Result.insertBits(*this, NewLSB.getBitWidth()); in concatSlowCase()
369 unsigned subBitWidth = subBits.getBitWidth(); in insertBits()
600 assert(getBitWidth() % SplatSizeInBits == 0 && in isSplat()
621 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
624 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
1096 unsigned rotBitWidth = rotateAmt.getBitWidth(); in rotateModulo()
1103 rot = rot.urem(APInt(rot.getBitWidth(), BitWidth)); in rotateModulo()
1995 return sshl_ov(ShAmt.getLimitedValue(getBitWidth()), Overflow); in sshl_ov()
1999 Overflow = ShAmt >= getBitWidth(); in sshl_ov()
2012 return ushl_ov(ShAmt.getLimitedValue(getBitWidth()), Overflow); in ushl_ov()
2016 Overflow = ShAmt >= getBitWidth(); in ushl_ov()
2086 return sshl_sat(RHS.getLimitedValue(getBitWidth())); in sshl_sat()
2100 return ushl_sat(RHS.getLimitedValue(getBitWidth())); in ushl_sat()
2791 unsigned CoeffWidth = A.getBitWidth(); in SolveQuadraticEquationWrap()
2792 assert(CoeffWidth == B.getBitWidth() && CoeffWidth == C.getBitWidth()); in SolveQuadraticEquationWrap()
2980 assert(A.getBitWidth() == B.getBitWidth() && "Must have the same bitwidth"); in GetMostSignificantDifferentBit()
2983 return A.getBitWidth() - ((A ^ B).countl_zero() + 1); in GetMostSignificantDifferentBit()
2988 unsigned OldBitWidth = A.getBitWidth(); in ScaleBitMask()
3030 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
3056 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory()