Home | History | Annotate | Download | only in optimizing

Lines Matching refs:compensation

1320         int32_t compensation = (cond == kCondLT) ? -1 : 0;  // upper bound is inclusive
1321 ValueBound new_upper = upper.Add(compensation, &overflow, &underflow);
1332 int32_t compensation = (cond == kCondLE) ? 1 : 0; // lower bound is inclusive
1333 ValueBound new_lower = lower.Add(compensation, &overflow, &underflow);
1355 int32_t compensation = (cond == kCondGT) ? 1 : 0; // lower bound is inclusive
1356 ValueBound new_lower = lower.Add(compensation, &overflow, &underflow);
1366 int32_t compensation = (cond == kCondGE) ? -1 : 0; // upper bound is inclusive
1367 ValueBound new_upper = upper.Add(compensation, &overflow, &underflow);