Searched refs:AbsMinus1 (Results 1 – 1 of 1) sorted by relevance
1891 static int32_t AbsMinus1(int32_t a) { return a < 0 ? -(a + 1) : (a - 1); } in AbsMinus1() function1900 int32_t positive_bound = Max(AbsMinus1(b->lower()), AbsMinus1(b->upper())); in InferRange()