Lines Matching refs:round
37 uint64_t accu = 0, round;
78 round = 1ULL << (nz-1);
79 u = ((accu + round) >> nz);
125 unsigned round;
138 round = 1U << (nz-1);
139 mant = (int)((accu + round) >> nz);
277 int shift, round;
284 round = 1 << (shift-1);
285 y0 += (s_m[m].mant * phi_sign0 + round) >> shift;
286 y1 += (s_m[m].mant * phi_sign1 + round) >> shift;
289 int shift, round, tmp;
297 round = 1 << (shift-1);
301 y0 += (tmp + round) >> shift;
305 y1 += (tmp + round) >> shift;