Lines Matching full:rounds
908 and rounds only after the addition. @mad() rounds after the multiplication and the addition.
1025 The function @remainder() is similar but rounds toward the closest interger.
1445 and rounds only after the addition. mad() rounds after the multiplication and the addition.
2876 The function @fmod() is similar but rounds toward the closest interger.
2935 Rounds to the nearest integral value.
2937 rint() rounds half values to even. For example, <code>rint(0.5f)</code> returns 0.f and
2941 @round() is similar but rounds away from zero. @trunc() truncates the decimal fraction.
2990 round() rounds half values away from zero. For example, <code>round(0.5f)</code> returns 1.f
2994 @rint() is similar but rounds half values toward even. @trunc() truncates the decimal fraction.
3341 Rounds to integral using truncation.