Lines Matching refs:GMP

60 class GMP  class
69 function gmp_init(int|string $num, int $base = 0): GMP {}
71 …mp_import(string $data, int $word_size = 1, int $flags = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN): GMP {}
73 function gmp_export(GMP|int|string $num, int $word_size = 1, int $flags = GMP_MSW_FIRST | GMP_NATIV…
75 function gmp_intval(GMP|int|string $num): int {}
77 function gmp_strval(GMP|int|string $num, int $base = 10): string {}
79 function gmp_add(GMP|int|string $num1, GMP|int|string $num2): GMP {}
81 function gmp_sub(GMP|int|string $num1, GMP|int|string $num2): GMP {}
83 function gmp_mul(GMP|int|string $num1, GMP|int|string $num2): GMP {}
89 function gmp_div_qr(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO…
91 function gmp_div_q(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO)…
93 function gmp_div_r(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO)…
96 function gmp_div(GMP|int|string $num1, GMP|int|string $num2, int $rounding_mode = GMP_ROUND_ZERO):
98 function gmp_mod(GMP|int|string $num1, GMP|int|string $num2): GMP {}
100 function gmp_divexact(GMP|int|string $num1, GMP|int|string $num2): GMP {}
102 function gmp_neg(GMP|int|string $num): GMP {}
104 function gmp_abs(GMP|int|string $num): GMP {}
106 function gmp_fact(GMP|int|string $num): GMP {}
108 function gmp_sqrt(GMP|int|string $num): GMP {}
114 function gmp_sqrtrem(GMP|int|string $num): array {}
116 function gmp_root(GMP|int|string $num, int $nth): GMP {}
122 function gmp_rootrem(GMP|int|string $num, int $nth): array {}
124 function gmp_pow(GMP|int|string $num, int $exponent): GMP {}
126 function gmp_powm(GMP|int|string $num, GMP|int|string $exponent, GMP|int|string $modulus): GMP {}
128 function gmp_perfect_square(GMP|int|string $num): bool {}
130 function gmp_perfect_power(GMP|int|string $num): bool {}
132 function gmp_prob_prime(GMP|int|string $num, int $repetitions = 10): int {}
134 function gmp_gcd(GMP|int|string $num1, GMP|int|string $num2): GMP {}
140 function gmp_gcdext(GMP|int|string $num1, GMP|int|string $num2): array {}
142 function gmp_lcm(GMP|int|string $num1, GMP|int|string $num2): GMP {}
144 function gmp_invert(GMP|int|string $num1, GMP|int|string $num2): GMP|false {}
146 function gmp_jacobi(GMP|int|string $num1, GMP|int|string $num2): int {}
148 function gmp_legendre(GMP|int|string $num1, GMP|int|string $num2): int {}
150 function gmp_kronecker(GMP|int|string $num1, GMP|int|string $num2): int {}
152 function gmp_cmp(GMP|int|string $num1, GMP|int|string $num2): int {}
154 function gmp_sign(GMP|int|string $num): int {}
156 function gmp_random_seed(GMP|int|string $seed): void {}
158 function gmp_random_bits(int $bits): GMP {}
160 function gmp_random_range(GMP|int|string $min, GMP|int|string $max): GMP {}
162 function gmp_and(GMP|int|string $num1, GMP|int|string $num2): GMP {}
164 function gmp_or(GMP|int|string $num1, GMP|int|string $num2): GMP {}
166 function gmp_com(GMP|int|string $num): GMP {}
168 function gmp_xor(GMP|int|string $num1, GMP|int|string $num2): GMP {}
170 function gmp_setbit(GMP $num, int $index, bool $value = true): void {}
172 function gmp_clrbit(GMP $num, int $index): void {}
174 function gmp_testbit(GMP|int|string $num, int $index): bool {}
176 function gmp_scan0(GMP|int|string $num1, int $start): int {}
178 function gmp_scan1(GMP|int|string $num1, int $start): int {}
180 function gmp_popcount(GMP|int|string $num): int {}
182 function gmp_hamdist(GMP|int|string $num1, GMP|int|string $num2): int {}
184 function gmp_nextprime(GMP|int|string $num): GMP {}
186 function gmp_binomial(GMP|int|string $n, int $k): GMP {}