Home
last modified time | relevance | path

Searched refs:sshl_ov (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h995 APInt sshl_ov(const APInt &Amt, bool &Overflow) const;
996 APInt sshl_ov(unsigned Amt, bool &Overflow) const;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1994 APInt APInt::sshl_ov(const APInt &ShAmt, bool &Overflow) const { in sshl_ov() function in APInt
1995 return sshl_ov(ShAmt.getLimitedValue(getBitWidth()), Overflow); in sshl_ov()
1998 APInt APInt::sshl_ov(unsigned ShAmt, bool &Overflow) const { in sshl_ov() function in APInt
2091 APInt Res = sshl_ov(RHS, Overflow); in sshl_sat()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp739 Res = llvm::APSInt(LHS.Val.sshl_ov(RHS.Val, Overflow), false); in EvaluateDirectiveSubExpr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp13803 llvm::APInt PowValue = One.sshl_ov(RightSideValue, Overflow); in diagnoseXorMisusedAsPow()