Lines Matching defs:round
92 size_t digits, uint32_t round)
102 if (sign && (round == STRPCT_RTI || round == STRPCT_RAI))
103 round ^= (STRPCT_RTI ^ STRPCT_RAI);
106 imax_abs(denominator), digits, round);
161 size_t digits, uint32_t round)
181 switch (round & 3) {
182 /* round towards 0, round towards -Inf */
187 /* round to nearest (0.5 always away) */
194 /* round away from 0, or towards Inf */
224 * This will be the last digit, so round it.
227 if (!(round & 1)) { /* round down */
228 if (round != 0 ? bignum_ge_u(num, 1) : /* up */