Searched refs:sshl_sat (Results 1 – 4 of 4) sorted by relevance
449 ConstantRange sshl_sat(const ConstantRange &Other) const;
1380 ConstantRange ConstantRange::sshl_sat(const ConstantRange &Other) const { in sshl_sat() function in ConstantRange1386 APInt NewL = Min.sshl_sat(Min.isNonNegative() ? ShAmtMin : ShAmtMax); in sshl_sat()1387 APInt NewU = Max.sshl_sat(Max.isNegative() ? ShAmtMin : ShAmtMax) + 1; in sshl_sat()
1131 APInt sshl_sat(const APInt &RHS) const;
2098 APInt APInt::sshl_sat(const APInt &RHS) const { in sshl_sat() function in APInt