Lines Matching defs:Adjustment

1926                               const llvm::APSInt &Adjustment) override;
1930 const llvm::APSInt &Adjustment) override;
1934 const llvm::APSInt &Adjustment) override;
1938 const llvm::APSInt &Adjustment) override;
1942 const llvm::APSInt &Adjustment) override;
1946 const llvm::APSInt &Adjustment) override;
1950 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
1954 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
1965 const llvm::APSInt &Adjustment) const;
1968 const llvm::APSInt &Adjustment) const;
1971 const llvm::APSInt &Adjustment) const;
1974 const llvm::APSInt &Adjustment) const;
1977 const llvm::APSInt &Adjustment) const;
3065 const llvm::APSInt &Adjustment) {
3067 APSIntType AdjustmentType(Adjustment);
3071 llvm::APSInt Point = AdjustmentType.convert(Int) - Adjustment;
3081 const llvm::APSInt &Adjustment) {
3083 APSIntType AdjustmentType(Adjustment);
3087 // [Int-Adjustment, Int-Adjustment]
3088 llvm::APSInt AdjInt = AdjustmentType.convert(Int) - Adjustment;
3098 const llvm::APSInt &Adjustment) const {
3100 APSIntType AdjustmentType(Adjustment);
3116 llvm::APSInt Lower = Min - Adjustment;
3117 llvm::APSInt Upper = ComparisonVal - Adjustment;
3127 const llvm::APSInt &Adjustment) {
3128 RangeSet New = getSymLTRange(St, Sym, Int, Adjustment);
3135 const llvm::APSInt &Adjustment) const {
3137 APSIntType AdjustmentType(Adjustment);
3153 llvm::APSInt Lower = ComparisonVal - Adjustment;
3154 llvm::APSInt Upper = Max - Adjustment;
3164 const llvm::APSInt &Adjustment) {
3165 RangeSet New = getSymGTRange(St, Sym, Int, Adjustment);
3172 const llvm::APSInt &Adjustment) const {
3174 APSIntType AdjustmentType(Adjustment);
3191 llvm::APSInt Lower = ComparisonVal - Adjustment;
3192 llvm::APSInt Upper = Max - Adjustment;
3201 const llvm::APSInt &Adjustment) {
3202 RangeSet New = getSymGERange(St, Sym, Int, Adjustment);
3209 const llvm::APSInt &Adjustment) const {
3211 APSIntType AdjustmentType(Adjustment);
3228 llvm::APSInt Lower = Min - Adjustment;
3229 llvm::APSInt Upper = ComparisonVal - Adjustment;
3238 const llvm::APSInt &Adjustment) const {
3239 return getSymLERange([&] { return getRange(St, Sym); }, Int, Adjustment);
3245 const llvm::APSInt &Adjustment) {
3246 RangeSet New = getSymLERange(St, Sym, Int, Adjustment);
3252 const llvm::APSInt &To, const llvm::APSInt &Adjustment) {
3253 RangeSet New = getSymGERange(State, Sym, From, Adjustment);
3256 RangeSet Out = getSymLERange([&] { return New; }, To, Adjustment);
3262 const llvm::APSInt &To, const llvm::APSInt &Adjustment) {
3263 RangeSet RangeLT = getSymLTRange(State, Sym, From, Adjustment);
3264 RangeSet RangeGT = getSymGTRange(State, Sym, To, Adjustment);