Lines Matching refs:GMP

5 class GMP  class
9 function gmp_init(int|string $num, int $base = 0): GMP {}
11 …mp_import(string $data, int $word_size = 1, int $flags = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN): GMP {}
13 function gmp_export(GMP|int|string $num, int $word_size = 1, int $flags = GMP_MSW_FIRST | GMP_NATIV…
15 function gmp_intval(GMP|int|string $num): int {}
17 function gmp_strval(GMP|int|string $num, int $base = 10): string {}
19 function gmp_add(GMP|int|string $num1, GMP|int|string $num2): GMP {}
21 function gmp_sub(GMP|int|string $num1, GMP|int|string $num2): GMP {}
23 function gmp_mul(GMP|int|string $num1, GMP|int|string $num2): GMP {}
25 function gmp_div_qr(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO…
27 function gmp_div_q(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO)…
29 function gmp_div_r(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO)…
32 function gmp_div(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO):
34 function gmp_mod(GMP|int|string $num1, GMP|int|string $num2): GMP {}
36 function gmp_divexact(GMP|int|string $num1, GMP|int|string $num2): GMP {}
38 function gmp_neg(GMP|int|string $num): GMP {}
40 function gmp_abs(GMP|int|string $num): GMP {}
42 function gmp_fact(GMP|int|string $num): GMP {}
44 function gmp_sqrt(GMP|int|string $num): GMP {}
46 function gmp_sqrtrem(GMP|int|string $num): array {}
48 function gmp_root(GMP|int|string $num, int $nth): GMP {}
50 function gmp_rootrem(GMP|int|string $num, int $nth): array {}
52 function gmp_pow(GMP|int|string $num, int $exponent): GMP {}
54 function gmp_powm(GMP|int|string $num, GMP|int|string $exponent, GMP|int|string $modulus): GMP {}
56 function gmp_perfect_square(GMP|int|string $num): bool {}
58 function gmp_perfect_power(GMP|int|string $num): bool {}
60 function gmp_prob_prime(GMP|int|string $num, int $repetitions = 10): int {}
62 function gmp_gcd(GMP|int|string $num1, GMP|int|string $num2): GMP {}
64 function gmp_gcdext(GMP|int|string $num1, GMP|int|string $num2): array {}
66 function gmp_lcm(GMP|int|string $num1, GMP|int|string $num2): GMP {}
68 function gmp_invert(GMP|int|string $num1, GMP|int|string $num2): GMP|false {}
70 function gmp_jacobi(GMP|int|string $num1, GMP|int|string $num2): int {}
72 function gmp_legendre(GMP|int|string $num1, GMP|int|string $num2): int {}
74 function gmp_kronecker(GMP|int|string $num1, GMP|int|string $num2): int {}
76 function gmp_cmp(GMP|int|string $num1, GMP|int|string $num2): int {}
78 function gmp_sign(GMP|int|string $num): int {}
80 function gmp_random_seed(GMP|int|string $seed): void {}
82 function gmp_random_bits(int $bits): GMP {}
84 function gmp_random_range(GMP|int|string $min, GMP|int|string $max): GMP {}
86 function gmp_and(GMP|int|string $num1, GMP|int|string $num2): GMP {}
88 function gmp_or(GMP|int|string $num1, GMP|int|string $num2): GMP {}
90 function gmp_com(GMP|int|string $num): GMP {}
92 function gmp_xor(GMP|int|string $num1, GMP|int|string $num2): GMP {}
94 function gmp_setbit(GMP $num, int $index, bool $value = true): void {}
96 function gmp_clrbit(GMP $num, int $index): void {}
98 function gmp_testbit(GMP|int|string $num, int $index): bool {}
100 function gmp_scan0(GMP|int|string $num1, int $start): int {}
102 function gmp_scan1(GMP|int|string $num1, int $start): int {}
104 function gmp_popcount(GMP|int|string $num): int {}
106 function gmp_hamdist(GMP|int|string $num1, GMP|int|string $num2): int {}
108 function gmp_nextprime(GMP|int|string $num): GMP {}
110 function gmp_binomial(GMP|int|string $n, int $k): GMP {}