Home | History | Annotate | Download | only in Core

Lines Matching refs:Adjustment

302                              const llvm::APSInt& Adjustment) override;
306 const llvm::APSInt& Adjustment) override;
310 const llvm::APSInt& Adjustment) override;
314 const llvm::APSInt& Adjustment) override;
318 const llvm::APSInt& Adjustment) override;
322 const llvm::APSInt& Adjustment) override;
326 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
330 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
346 const llvm::APSInt &Adjustment);
349 const llvm::APSInt &Adjustment);
352 const llvm::APSInt &Adjustment);
354 const llvm::APSInt &Adjustment);
357 const llvm::APSInt &Adjustment);
452 const llvm::APSInt &Adjustment) {
454 APSIntType AdjustmentType(Adjustment);
458 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment;
463 // [Int-Adjustment+1, Int-Adjustment-1]
472 const llvm::APSInt &Adjustment) {
474 APSIntType AdjustmentType(Adjustment);
478 // [Int-Adjustment, Int-Adjustment]
479 llvm::APSInt AdjInt = AdjustmentType.convert(Int) - Adjustment;
487 const llvm::APSInt &Adjustment) {
489 APSIntType AdjustmentType(Adjustment);
505 llvm::APSInt Lower = Min - Adjustment;
506 llvm::APSInt Upper = ComparisonVal - Adjustment;
515 const llvm::APSInt &Adjustment) {
516 RangeSet New = getSymLTRange(St, Sym, Int, Adjustment);
523 const llvm::APSInt &Adjustment) {
525 APSIntType AdjustmentType(Adjustment);
541 llvm::APSInt Lower = ComparisonVal - Adjustment;
542 llvm::APSInt Upper = Max - Adjustment;
551 const llvm::APSInt &Adjustment) {
552 RangeSet New = getSymGTRange(St, Sym, Int, Adjustment);
559 const llvm::APSInt &Adjustment) {
561 APSIntType AdjustmentType(Adjustment);
578 llvm::APSInt Lower = ComparisonVal - Adjustment;
579 llvm::APSInt Upper = Max - Adjustment;
587 const llvm::APSInt &Adjustment) {
588 RangeSet New = getSymGERange(St, Sym, Int, Adjustment);
595 const llvm::APSInt &Adjustment) {
597 APSIntType AdjustmentType(Adjustment);
614 llvm::APSInt Lower = Min - Adjustment;
615 llvm::APSInt Upper = ComparisonVal - Adjustment;
623 const llvm::APSInt &Adjustment) {
625 APSIntType AdjustmentType(Adjustment);
642 llvm::APSInt Lower = Min - Adjustment;
643 llvm::APSInt Upper = ComparisonVal - Adjustment;
651 const llvm::APSInt &Adjustment) {
652 RangeSet New = getSymLERange(St, Sym, Int, Adjustment);
659 const llvm::APSInt &To, const llvm::APSInt &Adjustment) {
660 RangeSet New = getSymGERange(State, Sym, From, Adjustment);
663 New = getSymLERange(New, To, Adjustment);
670 const llvm::APSInt &To, const llvm::APSInt &Adjustment) {
671 RangeSet RangeLT = getSymLTRange(State, Sym, From, Adjustment);
672 RangeSet RangeGT = getSymGTRange(State, Sym, To, Adjustment);