Lines Matching defs:bmod
50 '%' => sub { $_[2] ? ref($_[0]) -> new($_[1]) -> bmod($_[0])
51 : $_[0] -> copy() -> bmod($_[1]); },
72 '%=' => sub { $_[0] -> bmod($_[1]); },
2294 $rem = $rem->bmod($y, @params); # copy already done
2313 sub bmod {
2321 return $x if $x->modify('bmod');
2324 # Math::BigInt -> bmod().
2328 # Modulo zero. This is handled the same way as in Math::BigInt -> bmod().
2335 # Math::BigInt -> bmod().
2342 # Math::BigInt -> bmod().
2458 $num = $num->bpow($exp)->bmod($mod);
3190 $x = $x -> bmod($twopi, $scale);
4589 ($x, $y) = ($y->copy(), $x->copy()->bmod($y));
4807 my $c = $expo -> copy() -> bmod(3);
6328 $x->bmod($y); # modulus (x % y)
6667 $r. The remainer (modulo) is equal to what is returned by C<< $x->bmod($y) >>.
6669 =item bmod()
6671 $x->bmod($y);