Home
last modified time | relevance | path

Searched refs:exp (Results 51 – 70 of 70) sorted by relevance

123

/PHP-7.2/ext/standard/tests/file/
H A Dis_readable_variation2.phpt34 var_dump( is_readable("$file_path/is_readable_variation2") ); // exp: bool(false)
/PHP-7.2/ext/gmp/
H A Dgmp.c84 ZEND_ARG_INFO(0, exp)
89 ZEND_ARG_INFO(0, exp)
1394 zend_long exp; in ZEND_FUNCTION() local
1396 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zl", &base_arg, &exp) == FAILURE) { in ZEND_FUNCTION()
1400 if (exp < 0) { in ZEND_FUNCTION()
1407 mpz_ui_pow_ui(gmpnum_result, Z_LVAL_P(base_arg), exp); in ZEND_FUNCTION()
1411 mpz_pow_ui(gmpnum_result, gmpnum_base, exp); in ZEND_FUNCTION()
/PHP-7.2/ext/standard/tests/math/
H A Dexpm1_variation1.phpt9 * Description: Returns exp(number) - 1, computed in a way that is accurate even
/PHP-7.2/ext/standard/
H A Dmath.c283 return(exp(x) - 1); in php_expm1()
640 PHP_FUNCTION(exp) in PHP_FUNCTION() argument
648 RETURN_DOUBLE(exp(num)); in PHP_FUNCTION()
H A Dbasic_functions.c2940 PHP_FE(exp, arginfo_exp)
/PHP-7.2/win32/build/
H A DMakefile151 …st $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_D…
163 …es $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_D…
/PHP-7.2/build/
H A Dlibtool.m43571 echo "-hidden">> $lib.exp~
3573 $rm $lib.exp'
3637 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
3674 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
3675 …ared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $com…
3685 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
3686 …C -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $com…
6057 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
6058 …$CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$…
6062 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
[all …]
/PHP-7.2/
H A DREADME.TESTING87 ext/myext/tests/myext.exp - expected output (E)
89 ext/myext/tests/myext.diff - diff of .out and .exp (D)
H A D.gitignore222 **/tests/**/*.exp
/PHP-7.2/sapi/apache2handler/
H A Dconfig.m485 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-brtl -Wl,-bI:$APXS_LIBEXECDIR/httpd.exp"
/PHP-7.2/ext/
H A Dext_skel241 tests/*/*.exp
/PHP-7.2/ext/pcre/pcrelib/sljit/
H A DsljitLir.c661 #define ADDRESSING_DEPENDS_ON(exp, reg) \ argument
662 (((exp) & SLJIT_MEM) && (((exp) & REG_MASK) == reg || OFFS_REG(exp) == reg))
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt116 printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
H A Dmysqli_fetch_all_oo.phpt142 printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
H A Dmysqli_fetch_array.phpt114 printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
H A Dmysqli_fetch_all.phpt142 printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
/PHP-7.2/ext/gd/libgd/
H A Dgd.c90 #define floor_cast(exp) ((long) exp) argument
H A Dgd_interpolation.c569 return (double)(exp(-2.0f * x * x) * 0.79788456080287f); in filter_gaussian()
/PHP-7.2/ext/exif/
H A Dexif.c3477 … = (float)exp(exif_convert_any_format(value_ptr, format, ImageInfo->motorola_intel)*log(2)*0.5); in exif_process_IFD_TAG()
3489 … = (float)(1/exp(exif_convert_any_format(value_ptr, format, ImageInfo->motorola_intel)*log(2))); in exif_process_IFD_TAG()
/PHP-7.2/ext/sqlite3/libsqlite/
H A Dsqlite3.c27755 exp = 0;
27763 while( realvalue>=1e100*scale && exp<=350 ){ scale *= 1e100;exp+=100;}
27764 while( realvalue>=1e10*scale && exp<=350 ){ scale *= 1e10; exp+=10; }
27765 while( realvalue>=10.0*scale && exp<=350 ){ scale *= 10.0; exp++; }
27769 if( exp>350 ){
27788 if( exp<-4 || exp>precision ){
27800 e2 = exp;
27854 if( exp<0 ){
27855 *(bufpt++) = '-'; exp = -exp;
27859 if( exp>=100 ){
[all …]

Completed in 562 milliseconds

123