Searched defs:bmodpow (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigRat.pm970 sub bmodpow subroutine
987 return $self->new($x->as_number()->bmodpow($y->as_number(),$m,@r));
990 warn ("bmodpow() not fully implemented");
1550 =item bmod(), blog(), bmodinv() and bmodpow() (partial)
H A DBigInt.pm1602 sub bmodpow subroutine
1609 return $num if $num->modify('bmodpow');
2633 $x->bmodpow($exp,$mod); # modular exponentation (($num**$exp) % $mod))
3081 =head2 bmodpow
3083 $num->bmodpow($exp,$mod); # modular exponentation
3087 C<$mod> using binary exponentation. C<bmodpow> is far superior to
3095 C<bmodpow> also supports negative exponents.
3097 bmodpow($num, -1, $mod)

Completed in 23 milliseconds