Home
last modified time | relevance | path

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

/PHP-7.2/ext/standard/
H A Dmath.c132 int precision_places; in _php_math_round() local
139 precision_places = 14 - php_intlog10abs(value); in _php_math_round()
146 if (precision_places > places && precision_places - places < 15) { in _php_math_round()
147 int64_t use_precision = precision_places < INT_MIN+1 ? INT_MIN+1 : precision_places; in _php_math_round()
159 use_precision = places - precision_places; in _php_math_round()

Completed in 7 milliseconds