Searched refs:round_using_specific_rounding_mode (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/llvm-libc/src/__support/FPUtil/ |
H A D | NearestIntegerOperations.h | 158 round_using_specific_rounding_mode(T x, int rnd) { in round_using_specific_rounding_mode() function 253 return round_using_specific_rounding_mode(x, FP_INT_DOWNWARD); in round_using_current_rounding_mode() 255 return round_using_specific_rounding_mode(x, FP_INT_UPWARD); in round_using_current_rounding_mode() 257 return round_using_specific_rounding_mode(x, FP_INT_TOWARDZERO); in round_using_current_rounding_mode() 259 return round_using_specific_rounding_mode(x, FP_INT_TONEAREST); in round_using_current_rounding_mode() 285 T rounded_value = round_using_specific_rounding_mode(x, rnd); in fromfp()
|
/aosp_15_r20/external/llvm-libc/src/math/generic/ |
H A D | roundevenl.cpp | 17 return fputil::round_using_specific_rounding_mode(x, FP_INT_TONEAREST);
|
H A D | roundevenf128.cpp | 17 return fputil::round_using_specific_rounding_mode(x, FP_INT_TONEAREST);
|
H A D | roundevenf.cpp | 20 return fputil::round_using_specific_rounding_mode(x, FP_INT_TONEAREST);
|
H A D | roundeven.cpp | 20 return fputil::round_using_specific_rounding_mode(x, FP_INT_TONEAREST);
|
H A D | roundevenf16.cpp | 23 return fputil::round_using_specific_rounding_mode(x, FP_INT_TONEAREST);
|