Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 25 of 73) sorted by last modified time

123

/php-src/ext/gmp/
H A Dgmp.c1275 zend_long exp; in ZEND_FUNCTION() local
1277 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zl", &base_arg, &exp) == FAILURE) { in ZEND_FUNCTION()
1281 if (exp < 0) { in ZEND_FUNCTION()
1288 mpz_ui_pow_ui(gmpnum_result, Z_LVAL_P(base_arg), exp); in ZEND_FUNCTION()
1293 mpz_pow_ui(gmpnum_result, gmpnum_base, exp); in ZEND_FUNCTION()
/php-src/ext/dom/lexbor/lexbor/core/
H A Dstrtod.c110 lexbor_strtod_adjust_pow10(int exp) in lexbor_strtod_adjust_pow10() argument
112 switch (exp) { in lexbor_strtod_adjust_pow10()
169 exp += remaining; in lexbor_strtod_diyfp_strtod()
180 orig_e = value.exp; in lexbor_strtod_diyfp_strtod()
182 error <<= orig_e - value.exp; in lexbor_strtod_diyfp_strtod()
184 if (exp < LEXBOR_DECIMAL_EXPONENT_MIN) { in lexbor_strtod_diyfp_strtod()
190 if (dec_exp != exp) { in lexbor_strtod_diyfp_strtod()
191 adj_exp = exp - dec_exp; in lexbor_strtod_diyfp_strtod()
216 orig_e = value.exp; in lexbor_strtod_diyfp_strtod()
218 error <<= orig_e - value.exp; in lexbor_strtod_diyfp_strtod()
[all …]
H A Dstrtod.h21 lexbor_strtod_internal(const lxb_char_t *start, size_t length, int exp);
H A Ddiyfp.c120 lexbor_cached_power_dec(int exp, int *dec_exp) in lexbor_cached_power_dec() argument
125 index = (exp + LEXBOR_DECIMAL_EXPONENT_OFF) / LEXBOR_DECIMAL_EXPONENT_DIST; in lexbor_cached_power_dec()
134 lexbor_cached_power_bin(int exp, int *dec_exp) in lexbor_cached_power_bin() argument
140 k = (int) ceil((-61 - exp) * LEXBOR_DIYFP_D_1_LOG2_10) in lexbor_cached_power_bin()
H A Ddiyfp.h59 int exp; member
125 r.exp = LEXBOR_DBL_EXPONENT_MIN + 1; in lexbor_diyfp_from_d2()
134 int exp; in lexbor_diyfp_2d() local
143 exp = v.exp; in lexbor_diyfp_2d()
148 exp++; in lexbor_diyfp_2d()
151 if (exp >= LEXBOR_DBL_EXPONENT_MAX) { in lexbor_diyfp_2d()
155 if (exp < LEXBOR_DBL_EXPONENT_DENORMAL) { in lexbor_diyfp_2d()
163 exp--; in lexbor_diyfp_2d()
166 if (exp == LEXBOR_DBL_EXPONENT_DENORMAL in lexbor_diyfp_2d()
219 return lexbor_diyfp(h, lhs.exp + rhs.exp + 64); in lexbor_diyfp_mul()
[all …]
H A Ddtoa.c101 one = lexbor_diyfp((uint64_t) 1 << -Mp.exp, Mp.exp); in lexbor_grisu2_gen()
102 p1 = (uint32_t) (Mp.significand >> -one.exp); in lexbor_grisu2_gen()
140 tmp = ((uint64_t) p1 << -one.exp) + p2; in lexbor_grisu2_gen()
155 c = (char) (p2 >> -one.exp); in lexbor_grisu2_gen()
186 v.exp--; in lexbor_diyfp_normalize_boundary()
208 mi.significand <<= mi.exp - pl.exp; in lexbor_diyfp_normalize_boundaries()
209 mi.exp = pl.exp; in lexbor_diyfp_normalize_boundaries()
224 c_mk = lexbor_cached_power_bin(w_p.exp, dec_exp); in lexbor_grisu2()
251 if (exp < 0) { in lexbor_write_exponent()
255 exp = -exp; in lexbor_write_exponent()
[all …]
/php-src/build/
H A Dlibtool.m43576 echo "-hidden">> $lib.exp~
3578 $rm $lib.exp'
3642 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
3679 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
3680 …ared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $com…
3690 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
3691 …C -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $com…
6062 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
6063 …$CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$…
6067 …1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "…
[all …]
/php-src/ext/standard/
H A Dbasic_functions.stub.php3207 function exp(float $num): float {}
H A Dbasic_functions_arginfo.h2775 ZEND_FUNCTION(exp);
H A Dmath.c575 PHP_FUNCTION(exp) in PHP_FUNCTION() argument
583 RETURN_DOUBLE(exp(num)); in PHP_FUNCTION()
/php-src/sapi/apache2handler/
H A Dconfig.m484 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-brtl -Wl,-bI:$APXS_LIBEXECDIR/httpd.exp"
/php-src/ext/gd/libgd/
H A Dgd.c60 #define floor_cast(exp) ((long) exp) argument
H A Dgd_interpolation.c570 return (double)(exp(-2.0f * x * x) * 0.79788456080287f); in filter_gaussian()
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeARM_32.c2760 sljit_u32 exp; in sljit_emit_fset32() local
2775 exp = (u.imm >> (23 + 2)) & 0x3f; in sljit_emit_fset32()
2777 if (exp == 0x20 || exp == 0x1f) { in sljit_emit_fset32()
2792 sljit_u32 exp; in sljit_emit_fset64() local
2807 exp = (u.imm[1] >> ((52 - 32) + 2)) & 0x1ff; in sljit_emit_fset64()
2809 if (exp == 0x100 || exp == 0xff) { in sljit_emit_fset64()
H A DsljitNativeARM_64.c1987 sljit_u32 exp; in sljit_emit_fset32() local
2002 exp = (u.imm >> (23 + 2)) & 0x3f; in sljit_emit_fset32()
2004 if (exp == 0x20 || exp == 0x1f) in sljit_emit_fset32()
2015 sljit_uw exp; in sljit_emit_fset64() local
2030 exp = (u.imm >> (52 + 2)) & 0x1ff; in sljit_emit_fset64()
2032 if (exp == 0x100 || exp == 0xff) in sljit_emit_fset64()
H A DsljitNativeARM_T2_32.c2309 sljit_u32 exp; in sljit_emit_fset32() local
2324 exp = (u.imm >> (23 + 2)) & 0x3f; in sljit_emit_fset32()
2326 if (exp == 0x20 || exp == 0x1f) { in sljit_emit_fset32()
2341 sljit_u32 exp; in sljit_emit_fset64() local
2356 exp = (u.imm[1] >> ((52 - 32) + 2)) & 0x1ff; in sljit_emit_fset64()
2358 if (exp == 0x100 || exp == 0xff) { in sljit_emit_fset64()
H A DsljitLir.c792 #define ADDRESSING_DEPENDS_ON(exp, reg) \ argument
793 (((exp) & SLJIT_MEM) && (((exp) & REG_MASK) == reg || OFFS_REG(exp) == reg))
/php-src/
H A D.gitignore230 **/tests/**/*.exp
/php-src/win32/build/
H A DMakefile164 …st $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_D…
176 …es $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_D…
/php-src/ext/gd/tests/
H A Dimageresolution_png.phpt15 $exp = imagecreate(100, 100);
16 imagecolorallocate($exp, 255, 0, 0);
18 imageresolution($exp, 71);
19 imagepng($exp, $filename);
23 imageresolution($exp, 71, 299);
24 imagepng($exp, $filename);
H A Dbug53504.phpt25 …['fontSize' => 50, 'angle' => 0, 'x' => 20, 'y' => 70, 'text' => 'AV Teg', 'exp' => [2,15, 208,15,…
26 …['fontSize' => 50, 'angle' => 90, 'x' => 70, 'y' => 350, 'text' => 'AV Teg', 'exp' => [15,-1, 15,-…
30 …['fontSize' => 100, 'angle' => 0, 'x' => 350, 'y' => 110, 'text' => 'H-Shift', 'exp' => [8,2, 386,…
33 …['fontSize' => 100, 'angle' => 0, 'x' => 350, 'y' => 220, 'text' => '-', 'exp' => [7,-37, 51,-37, …
34 …['fontSize' => 100, 'angle' => 0, 'x' => 430, 'y' => 220, 'text' => ',', 'exp' => [7,15, 21,15, 21…
35 …['fontSize' => 100, 'angle' => 0, 'x' => 510, 'y' => 220, 'text' => '.', 'exp' => [7,1, 21,1, 21,-…
36 …['fontSize' => 100, 'angle' => 0, 'x' => 590, 'y' => 220, 'text' => '|', 'exp' => [8,0, 17,0, 17,-…
37 …['fontSize' => 100, 'angle' => 0, 'x' => 670, 'y' => 220, 'text' => 'g', 'exp' => [5,29, 60,29, 60…
60 $exp = $test['exp'][$i];
61 if ($bbox[$i] >= $exp - 2 && $bbox[$i] <= $exp + 2) {
[all …]
H A Dbug43073.phpt14 $exp = [
48 if ($bbox[$j] >= $exp[$i][$j] - 1 && $bbox[$j] <= $exp[$i][$j] + 1) {
51 echo "(expected $exp[$i][$j], got $bbox[$j])";
/php-src/ext/standard/tests/math/
H A Dpow_variation2.phpt2 Test pow() function : usage variations - different data types as $exp argument
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c215 #define cast(t,exp)((t)(exp)) argument
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_types.phpt55 $exp = $value;
59 $exp = $ret_value;
61 …if ($row['label'] !== $exp && !is_null($alternative_type) && gettype($row['label']) != $alternativ…
63 $sql_type, var_export($exp, true), gettype($exp),

Completed in 149 milliseconds

123