Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dmath.c601 zval *zbase, *zexp; in PHP_FUNCTION() local
603 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z/z/", &zbase, &zexp) == FAILURE) { in PHP_FUNCTION()
609 convert_scalar_to_number(zexp TSRMLS_CC); in PHP_FUNCTION()
612 if (Z_TYPE_P(zbase) == IS_LONG && Z_TYPE_P(zexp) == IS_LONG && Z_LVAL_P(zexp) >= 0) { in PHP_FUNCTION()
613 long l1 = 1, l2 = Z_LVAL_P(zbase), i = Z_LVAL_P(zexp); in PHP_FUNCTION()
641 convert_to_double(zexp); in PHP_FUNCTION()
643 RETURN_DOUBLE(pow(Z_DVAL_P(zbase), Z_DVAL_P(zexp))); in PHP_FUNCTION()

Completed in 19 milliseconds