Home
last modified time | relevance | path

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

/external/llvm-project/libc/utils/FPUtil/
DNearestIntegerOperations.h77 T truncValue = T(bits); in ceil() local
80 if (truncValue == x) in ceil()
85 return truncValue; in ceil()
87 return truncValue + T(1.0); in ceil()
138 T truncValue = T(bits); in round() local
141 if (truncValue == x) in round()
147 return truncValue; in round()
149 return isNeg ? truncValue - T(1.0) : truncValue + T(1.0); in round()