reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/APInt.h
 1104   APInt sshl_ov(const APInt &Amt, bool &Overflow) const;

References

lib/Support/APInt.cpp
 2075   APInt Res = sshl_ov(RHS, Overflow);
tools/clang/lib/Lex/PPExpressions.cpp
  690         Res = llvm::APSInt(LHS.Val.sshl_ov(RHS.Val, Overflow), false);
tools/clang/lib/Sema/SemaExpr.cpp
11250     llvm::APInt PowValue = One.sshl_ov(RightSideValue, Overflow);
unittests/IR/ConstantRangeTest.cpp
 1687                                (void)N1.sshl_ov(N2, Overflow);