• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/

Lines Matching refs:Int

312                          const llvm::APSInt &Int,
315 const llvm::APSInt &Int,
318 const llvm::APSInt &Int,
321 const llvm::APSInt &Int,
324 const llvm::APSInt &Int,
555 const llvm::APSInt &Int,
559 if (AdjustmentType.testInRange(Int, true) != APSIntType::RTR_Within)
562 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment;
567 // [Int-Adjustment+1, Int-Adjustment-1]
575 const llvm::APSInt &Int,
579 if (AdjustmentType.testInRange(Int, true) != APSIntType::RTR_Within)
582 // [Int-Adjustment, Int-Adjustment]
583 llvm::APSInt AdjInt = AdjustmentType.convert(Int) - Adjustment;
590 const llvm::APSInt &Int,
594 switch (AdjustmentType.testInRange(Int, true)) {
603 // Special case for Int == Min. This is always false.
604 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int);
618 const llvm::APSInt &Int,
620 RangeSet New = getSymLTRange(St, Sym, Int, Adjustment);
626 const llvm::APSInt &Int,
630 switch (AdjustmentType.testInRange(Int, true)) {
639 // Special case for Int == Max. This is always false.
640 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int);
654 const llvm::APSInt &Int,
656 RangeSet New = getSymGTRange(St, Sym, Int, Adjustment);
662 const llvm::APSInt &Int,
666 switch (AdjustmentType.testInRange(Int, true)) {
675 // Special case for Int == Min. This is always feasible.
676 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int);
690 const llvm::APSInt &Int,
692 RangeSet New = getSymGERange(St, Sym, Int, Adjustment);
698 const llvm::APSInt &Int,
702 switch (AdjustmentType.testInRange(Int, true)) {
711 // Special case for Int == Max. This is always feasible.
712 llvm::APSInt ComparisonVal = AdjustmentType.convert(Int);
726 const llvm::APSInt &Int,
728 return getSymLERange([&] { return getRange(St, Sym); }, Int, Adjustment);
733 const llvm::APSInt &Int,
735 RangeSet New = getSymLERange(St, Sym, Int, Adjustment);