Home | History | Annotate | Download | only in dfp

Lines Matching defs:round

66         round(0);
74 round(0);
83 round(0);
165 protected int round(int in) {
193 return super.round(in);
222 inc = (n != 0) || (discarded != 0); // round up if n!=0
226 inc = n >= 5; // round half up
230 inc = n > 5; // round half down
236 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 1); // round half-even
242 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 0); // round half-odd
246 inc = (sign == 1) && (n != 0 || discarded != 0); // round ceil
251 inc = (sign == -1) && (n != 0 || discarded != 0); // round floor