Lines Matching full:rounds
1707 * and rounds only after the addition. mad() rounds after the multiplication and the addition.
1873 * The function remainder() is similar but rounds toward the closest interger.
2589 * and rounds only after the addition. mad() rounds after the multiplication and the addition.
5673 * The function fmod() is similar but rounds toward the closest interger.
5766 * Rounds to the nearest integral value.
5768 * rint() rounds half values to even. For example, rint(0.5f) returns 0.f and
5772 * round() is similar but rounds away from zero. trunc() truncates the decimal fraction.
5850 * round() rounds half values away from zero. For example, round(0.5f) returns 1.f
5854 * rint() is similar but rounds half values toward even. trunc() truncates the decimal fraction.
6427 * Rounds to integral using truncation.