Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dmath.c145 int64_t use_precision = precision_places < INT_MIN+1 ? INT_MIN+1 : precision_places; in _php_math_round() local
147 f2 = php_intpow10(abs((int)use_precision)); in _php_math_round()
148 if (use_precision >= 0) { in _php_math_round()
157 use_precision = places - precision_places; in _php_math_round()
158 use_precision = use_precision < INT_MIN+1 ? INT_MIN+1 : use_precision; in _php_math_round()
160 f2 = php_intpow10(abs((int)use_precision)); in _php_math_round()

Completed in 8 milliseconds