Home
last modified time | relevance | path

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

/PHP-8.3/ext/bcmath/
H A Dbcmath.c500 bc_num first, bc_exponent, result; in PHP_FUNCTION() local
520 bc_init_num(&bc_exponent); in PHP_FUNCTION()
528 if (php_str2num(&bc_exponent, ZSTR_VAL(exponent_str)) == FAILURE) { in PHP_FUNCTION()
534 if (bc_exponent->n_scale != 0) { in PHP_FUNCTION()
538 long exponent = bc_num2long(bc_exponent); in PHP_FUNCTION()
539 if (exponent == 0 && (bc_exponent->n_len > 1 || bc_exponent->n_value[0] != 0)) { in PHP_FUNCTION()
550 bc_free_num(&bc_exponent); in PHP_FUNCTION()

Completed in 5 milliseconds