Searched refs:nearest_integer (Results 1 – 4 of 4) sorted by relevance
26 LIBC_INLINE float nearest_integer(float x) { return __builtin_rintf(x); } in nearest_integer() function28 LIBC_INLINE double nearest_integer(double x) { return __builtin_rint(x); } in nearest_integer() function43 LIBC_INLINE float nearest_integer(float x) { in nearest_integer() function59 LIBC_INLINE double nearest_integer(double x) { in nearest_integer() function
23 LIBC_INLINE float nearest_integer(float x) { in nearest_integer() function29 LIBC_INLINE double nearest_integer(double x) { in nearest_integer() function
29 LIBC_INLINE float nearest_integer(float x) { in nearest_integer() function36 LIBC_INLINE double nearest_integer(double x) { in nearest_integer() function
66 float kf = fputil::nearest_integer(xf * 0x1.0p+3f); in exp_range_reduction()