Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A DNearestIntegerOperations.h158 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()