nth                95 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, nth)
nth              1518 ext/gmp/gmp.c  	zend_long nth;
nth              1522 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zl", &a_arg, &nth) == FAILURE) {
nth              1526 ext/gmp/gmp.c  	if (nth <= 0) {
nth              1533 ext/gmp/gmp.c  	if (nth % 2 == 0 && mpz_sgn(gmpnum_a) < 0) {
nth              1540 ext/gmp/gmp.c  	mpz_root(gmpnum_result, gmpnum_a, (gmp_ulong) nth);
nth              1550 ext/gmp/gmp.c  	zend_long nth;
nth              1555 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zl", &a_arg, &nth) == FAILURE) {
nth              1559 ext/gmp/gmp.c  	if (nth <= 0) {
nth              1566 ext/gmp/gmp.c  	if (nth % 2 == 0 && mpz_sgn(gmpnum_a) < 0) {
nth              1582 ext/gmp/gmp.c  	mpz_rootrem(gmpnum_result1, gmpnum_result2, gmpnum_a, (gmp_ulong) nth);
nth              1584 ext/gmp/gmp.c  	mpz_root(gmpnum_result1, gmpnum_a, (gmp_ulong) nth);
nth              1585 ext/gmp/gmp.c  	mpz_pow_ui(gmpnum_result2, gmpnum_result1, (gmp_ulong) nth);