/php-src/ext/bcmath/ |
H A D | bcmath.stub.php | 8 function bcadd(string $num1, string $num2, ?int $scale = null): string {} 11 function bcsub(string $num1, string $num2, ?int $scale = null): string {} 14 function bcmul(string $num1, string $num2, ?int $scale = null): string {} 17 function bcdiv(string $num1, string $num2, ?int $scale = null): string {} 20 function bcmod(string $num1, string $num2, ?int $scale = null): string {} 26 function bcdivmod(string $num1, string $num2, ?int $scale = null): array {} 35 function bcsqrt(string $num, ?int $scale = null): string {} 37 function bccomp(string $num1, string $num2, ?int $scale = null): int {} 39 function bcscale(?int $scale = null): int {} 59 public int $scale; variable in BcMath\\Number [all …]
|
H A D | bcmath.c | 189 int scale; in PHP_FUNCTION() local 238 int scale; in PHP_FUNCTION() local 287 int scale; in PHP_FUNCTION() local 1258 size_t scale; in bcmath_number_do_operation() local 1408 size_t scale = 0; in PHP_METHOD() local 1442 size_t scale = scale_lval; in bcmath_number_calc_method() local 1544 size_t scale = scale_lval; in PHP_METHOD() local 1612 size_t scale = scale_lval; in PHP_METHOD() local 1673 size_t scale; in PHP_METHOD() local 1725 size_t scale; in PHP_METHOD() local [all …]
|
H A D | php_bcmath.h | 53 size_t scale; member
|
/php-src/ext/bcmath/libbcmath/src/ |
H A D | init.c | 38 static bc_num _bc_new_num_nonzeroed_ex_internal(size_t length, size_t scale, bool persistent) in _bc_new_num_nonzeroed_ex_internal() 62 bc_num _bc_new_num_ex(size_t length, size_t scale, bool persistent) in _bc_new_num_ex() 69 bc_num _bc_new_num_nonzeroed_ex(size_t length, size_t scale, bool persistent) in _bc_new_num_nonzeroed_ex()
|
H A D | compare.c | 42 bcmath_compare_result _bc_do_compare(bc_num n1, bc_num n2, size_t scale, bool use_sign) in _bc_do_compare() 142 bcmath_compare_result bc_compare(bc_num n1, bc_num n2, size_t scale) in bc_compare()
|
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() 86 bool bc_modulo(bc_num num1, bc_num num2, bc_num *result, size_t scale) in bc_modulo()
|
H A D | raise.c | 46 bool bc_raise(bc_num base, long exponent, bc_num *result, size_t scale) { in bc_raise() 111 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 | 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 | sqrt.c | 39 bool bc_sqrt(bc_num *num, size_t scale) in bc_sqrt()
|
H A D | bcmath.h | 178 #define bc_new_num(length, scale) _bc_new_num_ex((length), (scale), 0) argument 179 #define bc_new_num_nonzeroed(length, scale) _bc_new_num_nonzeroed_ex((length), (scale), 0) argument
|
H A D | recmul.c | 243 bc_num bc_multiply(bc_num n1, bc_num n2, size_t scale) in bc_multiply() 271 bc_num bc_square(bc_num n1, size_t scale) in bc_square()
|
H A D | str2num.c | 109 bool bc_str2num(bc_num *num, const char *str, const char *end, size_t scale, size_t *full_scale, bo… in bc_str2num()
|
H A D | div.c | 331 bool bc_divide(bc_num numerator, bc_num divisor, bc_num *quot, size_t scale) in bc_divide()
|
/php-src/ext/gd/libgd/ |
H A D | testac.c | 73 double scale, in testDrawing()
|
/php-src/ext/opcache/jit/ir/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-src/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-src/ext/odbc/ |
H A D | php_odbc_includes.h | 213 SQLSMALLINT scale; member
|
/php-src/Zend/ |
H A D | zend_strtod.c | 501 BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; }; member
|