Home
last modified time | relevance | path

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

/PHP-8.3/ext/bcmath/libbcmath/src/
H A Draise.c51 if (exponent == 0) { in bc_raise()
58 if (exponent < 0) { in bc_raise()
60 exponent = -exponent; in bc_raise()
70 while ((exponent & 1) == 0) { in bc_raise()
73 exponent = exponent >> 1; in bc_raise()
77 exponent = exponent >> 1; in bc_raise()
80 while (exponent > 0) { in bc_raise()
83 if ((exponent & 1) == 1) { in bc_raise()
87 exponent = exponent >> 1; in bc_raise()
110 long exponent = bc_num2long(expo); in bc_raise_bc_exponent() local
[all …]
H A Draisemod.c39 bc_num power, exponent, modulus, parity, temp; in bc_raisemod() local
64 exponent = bc_copy_num(expo); in bc_raisemod()
75 while (!bc_is_zero(exponent)) { in bc_raisemod()
76 (void) bc_divmod(exponent, BCG(_two_), &exponent, &parity, 0); in bc_raisemod()
88 bc_free_num (&exponent); in bc_raisemod()
H A Dbcmath.h137 raise_mod_status bc_raisemod(bc_num base, bc_num exponent, bc_num mod, bc_num *result, size_t scale…
139 void bc_raise(bc_num base, long exponent, bc_num *resul, size_t scale);
141 void bc_raise_bc_exponent(bc_num base, bc_num exponent, bc_num *resul, size_t scale);
/PHP-8.3/ext/bcmath/tests/
H A Dbcpow_error2.phpt20 bcpow(): Argument #2 ($exponent) is too large
21 bcpow(): Argument #2 ($exponent) is too large
H A Dbcpow_error1.phpt19 bcpow(): Argument #2 ($exponent) cannot have a fractional part
20 bcpow(): Argument #2 ($exponent) cannot have a fractional part
H A Dbcpowmod_negative_exponent.phpt16 bcpowmod(): Argument #2 ($exponent) must be greater than or equal to 0
H A Dbcpow_error3.phpt23 bcpow(): Argument #2 ($exponent) is not well-formed
H A Dbug72093.phpt20 bcpowmod(): Argument #2 ($exponent) cannot have a fractional part
H A Dbcpowmod_error.phpt29 bcpowmod(): Argument #2 ($exponent) is not well-formed
/PHP-8.3/ext/gmp/tests/
H A Dgmp_pow.phpt52 gmp_pow(): Argument #2 ($exponent) must be greater than or equal to 0
56 gmp_pow(): Argument #2 ($exponent) must be greater than or equal to 0
59 gmp_pow(): Argument #2 ($exponent) must be of type int, array given
H A Dgmp_pown.phpt79 gmp_powm(): Argument #2 ($exponent) must be of type GMP|string|int, array given
80 gmp_powm(): Argument #2 ($exponent) must be of type GMP|string|int, TypeError given
82 gmp_powm(): Argument #2 ($exponent) must be greater than or equal to 0
/PHP-8.3/ext/bcmath/
H A Dbcmath.stub.php21 function bcpowmod(string $num, string $exponent, string $modulus, ?int $scale = null): string {} argument
24 function bcpow(string $num, string $exponent, ?int $scale = null): string {} argument
H A Dbcmath_arginfo.h20 ZEND_ARG_TYPE_INFO(0, exponent, IS_STRING, 0)
27 ZEND_ARG_TYPE_INFO(0, exponent, IS_STRING, 0)
H A Dbcmath.c538 long exponent = bc_num2long(bc_exponent); in PHP_FUNCTION() local
539 if (exponent == 0 && (bc_exponent->n_len > 1 || bc_exponent->n_value[0] != 0)) { in PHP_FUNCTION()
544 bc_raise(first, exponent, &result, scale); in PHP_FUNCTION()
/PHP-8.3/Zend/
H A Dzend_strtod.h28 ZEND_API char *zend_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf);
H A Dzend_strtod.c4510 ZEND_API char *zend_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf) in zend_gcvt() argument
4554 *dst++ = exponent; in zend_gcvt()
/PHP-8.3/ext/standard/tests/math/
H A Dpow_basic.phpt41 foreach($exponents as $exponent) {
42 echo "\n..... Exponent = $exponent Result = ";
43 $res = pow($base, $exponent);
H A Dpow_basic_64bit.phpt41 foreach($exponents as $exponent) {
42 echo "\n..... Exponent = $exponent Result = ";
43 $res = pow($base, $exponent);
/PHP-8.3/main/
H A Dsnprintf.h78 PHPAPI char * php_0cvt(double value, int ndigit, char dec_point, char exponent, char *buf);
/PHP-8.3/ext/gmp/
H A Dgmp.stub.php124 function gmp_pow(GMP|int|string $num, int $exponent): GMP {} argument
126 function gmp_powm(GMP|int|string $num, GMP|int|string $exponent, GMP|int|string $modulus): GMP {} argument
H A Dgmp_arginfo.h85 ZEND_ARG_TYPE_INFO(0, exponent, IS_LONG, 0)
90 ZEND_ARG_OBJ_TYPE_MASK(0, exponent, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
/PHP-8.3/ext/standard/
H A Dbasic_functions.stub.php3140 function pow(mixed $num, mixed $exponent): int|float|object {}
H A Dbasic_functions_arginfo.h1672 ZEND_ARG_TYPE_INFO(0, exponent, IS_MIXED, 0)
/PHP-8.3/ext/fileinfo/tests/
H A Dmagic25425 # Block size exponent, E1; appears to always be 0x09; minimum block size 512 bytes
25427 # Block size exponent, E2 ; file blocksize=2**(E1+E2)
30000 >>>32 uleshort !6 \b, exponent of short stream %u
H A Dmagic私はガラスを食べられます25425 # Block size exponent, E1; appears to always be 0x09; minimum block size 512 bytes
25427 # Block size exponent, E2 ; file blocksize=2**(E1+E2)
30000 >>>32 uleshort !6 \b, exponent of short stream %u

Completed in 312 milliseconds