/PHP-8.3/ext/bcmath/ |
H A D | bcmath.stub.php | 6 function bcadd(string $num1, string $num2, ?int $scale = null): string {} 9 function bcsub(string $num1, string $num2, ?int $scale = null): string {} 12 function bcmul(string $num1, string $num2, ?int $scale = null): string {} 15 function bcdiv(string $num1, string $num2, ?int $scale = null): string {} 18 function bcmod(string $num1, string $num2, ?int $scale = null): string {} 21 function bcpowmod(string $num, string $exponent, string $modulus, ?int $scale = null): string {} 24 function bcpow(string $num, string $exponent, ?int $scale = null): string {} 27 function bcsqrt(string $num, ?int $scale = null): string {} 29 function bccomp(string $num1, string $num2, ?int $scale = null): int {} 31 function bcscale(?int $scale = null): int {}
|
H A D | bcmath.c | 162 int scale; in PHP_FUNCTION() local 213 int scale; in PHP_FUNCTION() local 264 int scale; in PHP_FUNCTION() local 315 int scale = BCG(bc_precision); in PHP_FUNCTION() local 369 int scale = BCG(bc_precision); in PHP_FUNCTION() local 423 int scale = BCG(bc_precision); in PHP_FUNCTION() local 501 int scale = BCG(bc_precision); in PHP_FUNCTION() local 563 int scale = BCG(bc_precision); in PHP_FUNCTION() local 606 int scale = BCG(bc_precision); in PHP_FUNCTION() local
|
/PHP-8.3/ext/bcmath/libbcmath/src/ |
H A D | divmod.c | 44 bool bc_divmod(bc_num num1, bc_num num2, bc_num *quot, bc_num *rem, size_t scale) in bc_divmod() 80 bool bc_modulo(bc_num num1, bc_num num2, bc_num *result, size_t scale) in bc_modulo()
|
H A D | raise.c | 42 void bc_raise(bc_num num1, long exponent, bc_num *result, size_t scale) in bc_raise() 105 void bc_raise_bc_exponent(bc_num base, bc_num expo, bc_num *result, size_t scale) in bc_raise_bc_exponent()
|
H A D | nearzero.c | 40 bool bc_is_near_zero(bc_num num, size_t scale) in bc_is_near_zero()
|
H A D | zero.c | 38 bool bc_is_zero_for_scale(bc_num num, size_t scale) in bc_is_zero_for_scale()
|
H A D | num2str.c | 37 zend_string *bc_num2str_ex(bc_num num, size_t scale) in bc_num2str_ex()
|
H A D | recmul.c | 51 static bc_num new_sub_num(size_t length, size_t scale, char *value) in new_sub_num() 259 void bc_multiply(bc_num n1, bc_num n2, bc_num *prod, size_t scale) in bc_multiply()
|
H A D | str2num.c | 38 bool bc_str2num(bc_num *num, char *str, size_t scale) in bc_str2num()
|
H A D | sqrt.c | 39 bool bc_sqrt(bc_num *num, size_t scale) in bc_sqrt()
|
H A D | raisemod.c | 37 raise_mod_status bc_raisemod(bc_num base, bc_num expo, bc_num mod, bc_num *result, size_t scale) in bc_raisemod()
|
H A D | init.c | 39 bc_num _bc_new_num_ex(size_t length, size_t scale, bool persistent) in _bc_new_num_ex()
|
H A D | div.c | 79 bool bc_divide(bc_num n1, bc_num n2, bc_num *quot, int scale) in bc_divide()
|
H A D | bcmath.h | 148 #define bc_new_num(length, scale) _bc_new_num_ex((length), (scale), 0) argument
|
/PHP-8.3/ext/gd/libgd/ |
H A D | testac.c | 73 double scale, in testDrawing()
|
/PHP-8.3/ext/opcache/jit/dynasm/ |
H A D | dasm_arm64.h | 322 int scale = (ins & 3); in dasm_put() local 516 int scale = (ins & 3); in dasm_encode() local
|
/PHP-8.3/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 290 SQLSMALLINT sqltype = 0, ctype = 0, scale = 0, nullable = 0; in odbc_stmt_param_hook() local
|
/PHP-8.3/ext/odbc/ |
H A D | php_odbc_includes.h | 207 SQLSMALLINT scale; member
|
/PHP-8.3/ext/pdo_oci/ |
H A D | oci_statement.c | 794 sb1 scale; in oci_stmt_col_meta() local
|
/PHP-8.3/ext/opcache/jit/libudis86/ |
H A D | types.h | 157 uint8_t scale; member
|
/PHP-8.3/ext/oci8/ |
H A D | php_oci8_int.h | 294 sb1 scale; /* column scale */ member
|
/PHP-8.3/Zend/ |
H A D | zend_strtod.c | 493 BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; }; member
|