Home
last modified time | relevance | path

Searched refs:round_to_signed_integer (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/libc/src/math/generic/
H A Dlroundf.cpp16 return fputil::round_to_signed_integer<float, long>(x);
H A Dlround.cpp16 return fputil::round_to_signed_integer<double, long>(x);
H A Dllroundl.cpp16 return fputil::round_to_signed_integer<long double, long long>(x);
H A Dllround.cpp16 return fputil::round_to_signed_integer<double, long long>(x);
H A Dlroundl.cpp16 return fputil::round_to_signed_integer<long double, long>(x);
H A Dllroundf.cpp16 return fputil::round_to_signed_integer<float, long long>(x);
/llvm-project-15.0.7/libc/src/__support/FPUtil/
H A DNearestIntegerOperations.h283 static inline I round_to_signed_integer(F x) { in round_to_signed_integer() function