Home
last modified time | relevance | path

Searched refs:nearest_integer (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A Dnearest_integer.h26 LIBC_INLINE float nearest_integer(float x) { return __builtin_rintf(x); } in nearest_integer() function
28 LIBC_INLINE double nearest_integer(double x) { return __builtin_rint(x); } in nearest_integer() function
43 LIBC_INLINE float nearest_integer(float x) { in nearest_integer() function
59 LIBC_INLINE double nearest_integer(double x) { in nearest_integer() function
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/aarch64/
H A Dnearest_integer.h23 LIBC_INLINE float nearest_integer(float x) { in nearest_integer() function
29 LIBC_INLINE double nearest_integer(double x) { in nearest_integer() function
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/x86_64/
H A Dnearest_integer.h29 LIBC_INLINE float nearest_integer(float x) { in nearest_integer() function
36 LIBC_INLINE double nearest_integer(double x) { in nearest_integer() function
/freebsd/contrib/llvm-project/libc/src/__support/math/
H A Dexpf16_utils.h66 float kf = fputil::nearest_integer(xf * 0x1.0p+3f); in exp_range_reduction()