Searched refs:NewLSB (Results 1 – 2 of 2) sorted by relevance
925 APInt concat(const APInt &NewLSB) const { in concat() argument927 unsigned NewWidth = getBitWidth() + NewLSB.getBitWidth(); in concat()929 return APInt(NewWidth, (U.VAL << NewLSB.getBitWidth()) | NewLSB.U.VAL); in concat()930 return concatSlowCase(NewLSB); in concat()2012 APInt concatSlowCase(const APInt &NewLSB) const;
353 APInt APInt::concatSlowCase(const APInt &NewLSB) const { in concatSlowCase()354 unsigned NewWidth = getBitWidth() + NewLSB.getBitWidth(); in concatSlowCase()355 APInt Result = NewLSB.zext(NewWidth); in concatSlowCase()356 Result.insertBits(*this, NewLSB.getBitWidth()); in concatSlowCase()