Searched defs:exp (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 19045 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_5_4/ext/gmp/ |
| H A D | gmp.c | 112 ZEND_ARG_INFO(0, exp) 117 ZEND_ARG_INFO(0, exp) 1029 /* {{{ proto resource gmp_pow(resource base, int exp) 1030 Raise base to power exp */ 1037 long exp; local 1039 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zl", &base_arg, &exp) == FAILURE) { 1049 if (exp < 0) { 1056 mpz_ui_pow_ui(*gmpnum_result, Z_LVAL_PP(base_arg), exp); 1058 mpz_pow_ui(*gmpnum_result, *gmpnum_base, exp); 1065 /* {{{ proto resource gmp_powm(resource base, resource exp, resourc [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | php_math.h | 40 PHP_FUNCTION(exp); variable
|
Completed in 124 milliseconds