Searched refs:nth (Results 1 – 6 of 6) sorted by relevance
/PHP-8.0/ext/gmp/tests/ |
H A D | gmp_root.phpt | 56 gmp_root(): Argument #2 ($nth) must be odd if argument #1 ($a) is negative 61 gmp_root(): Argument #2 ($nth) must be greater than 0 62 gmp_root(): Argument #2 ($nth) must be greater than 0
|
H A D | gmp_remroot.phpt | 95 gmp_rootrem(): Argument #2 ($nth) must be odd if argument #1 ($a) is negative 108 gmp_rootrem(): Argument #2 ($nth) must be greater than or equal to 1 109 gmp_rootrem(): Argument #2 ($nth) must be greater than or equal to 1
|
/PHP-8.0/ext/gmp/ |
H A D | gmp.c | 1392 zend_long nth; in ZEND_FUNCTION() local 1396 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zl", &a_arg, &nth) == FAILURE) { in ZEND_FUNCTION() 1400 if (nth <= 0) { in ZEND_FUNCTION() 1407 if (nth % 2 == 0 && mpz_sgn(gmpnum_a) < 0) { in ZEND_FUNCTION() 1414 mpz_root(gmpnum_result, gmpnum_a, (gmp_ulong) nth); in ZEND_FUNCTION() 1423 zend_long nth; in ZEND_FUNCTION() local 1432 if (nth <= 0) { in ZEND_FUNCTION() 1439 if (nth % 2 == 0 && mpz_sgn(gmpnum_a) < 0) { in ZEND_FUNCTION() 1455 mpz_rootrem(gmpnum_result1, gmpnum_result2, gmpnum_a, (gmp_ulong) nth); in ZEND_FUNCTION() 1457 mpz_root(gmpnum_result1, gmpnum_a, (gmp_ulong) nth); in ZEND_FUNCTION() [all …]
|
H A D | gmp.stub.php | 48 function gmp_root(GMP|int|string $num, int $nth): GMP {} argument 50 function gmp_rootrem(GMP|int|string $num, int $nth): array {} argument
|
H A D | gmp_arginfo.h | 75 ZEND_ARG_TYPE_INFO(0, nth, IS_LONG, 0) 80 ZEND_ARG_TYPE_INFO(0, nth, IS_LONG, 0)
|
/PHP-8.0/sapi/phpdbg/ |
H A D | xml.md | 168 - num: the nth opline of a function/method/file
|
Completed in 15 milliseconds