Lines Matching refs:INT64_MAX
59 * what a int64_t can hold, we need to cap the result at +/- INT64_MAX
80 if (ud > INT64_MAX)
81 return (INT64_MAX * s);
112 * value can express, the difference is capped at +/- INT64_MAX
174 * 5a. if dl < INT64_MAX, the result is still > INT64_MAX, so
176 * 5b. dl >= INT64_MAX
208 if (dl > INT64_MAX)
209 dl = INT64_MAX;
215 d = INT64_MAX;
217 d = -INT64_MAX;
220 if (dl < INT64_MAX) {
221 d = INT64_MAX;
226 d = -INT64_MAX - (dl - INT64_MAX) - 1;