Searched defs:exp (Results 1 - 3 of 3) sorted by relevance

/PHP_TRUNK/ext/standard/
H A Dphp_math.h40 PHP_FUNCTION(exp); variable
/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c19045 int exp, e2; /* exponent of real numbers */ local
19278 exp = 0;
19285 while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; }
19286 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
19287 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
19288 while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
19289 while( realvalue<1.0 ){ realvalue *= 10.0; exp
[all...]
/PHP_TRUNK/ext/gmp/
H A Dgmp.c110 ZEND_ARG_INFO(0, exp)
115 ZEND_ARG_INFO(0, exp)
1330 /* {{{ proto GMP gmp_pow(mixed base, int exp)
1331 Raise base to power exp */
1337 long exp; local
1339 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zl", &base_arg, &exp) == FAILURE) {
1343 if (exp < 0) {
1350 mpz_ui_pow_ui(gmpnum_result, Z_LVAL_P(base_arg), exp);
1353 mpz_pow_ui(gmpnum_result, gmpnum_base, exp);
1359 /* {{{ proto GMP gmp_powm(mixed base, mixed exp, mixe
[all...]

Completed in 107 milliseconds