Home
last modified time | relevance | path

Searched refs:_copy (Results 1 – 12 of 12) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/BigInt/
DLib.pm18 my $x = $class -> _copy($_[0]);
30 $x = $class -> _copy($_[0]);
38 my $x = $class -> _copy($_[0]);
50 $x = $class -> _copy($_[0]);
63 $x = $class -> _copy($_[0]);
76 $x = $class -> _copy($_[0]);
102 $x = $class -> _copy($_[0]);
117 $x = $class -> _copy($_[0]);
130 $x = $class -> _copy($_[0]);
143 $x = $class -> _copy($_[0]);
[all …]
DCalc.pm334 sub _copy { subroutine
551 $yv = $c->_copy($xv) if $xv == $yv; # same references?
612 $yv = $c->_copy($xv) if $xv == $yv; # same references?
663 $rem = $c->_mod($c->_copy($x), $yorg) if wantarray;
685 $rem = $c->_copy($x) if wantarray; # make copy
707 my $rem = $c->_copy($x);
718 my $y = $c->_copy($yorg); # always make copy to preserve
819 $rem = $c->_mod($c->_copy($x), $yorg) if wantarray;
841 $rem = $c->_copy($x) if wantarray; # make copy
863 my $rem = $c->_copy($x);
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/
DBigRat.pm354 my $gcd = $LIB -> _gcd($LIB -> _copy($self -> {_n}),
443 my $gcd_pr = $LIB -> _gcd($LIB -> _copy($p), $r);
444 my $gcd_sq = $LIB -> _gcd($LIB -> _copy($s), $q);
445 $self -> {_n} = $LIB -> _mul($LIB -> _div($LIB -> _copy($p), $gcd_pr),
446 $LIB -> _div($LIB -> _copy($s), $gcd_sq));
447 $self -> {_d} = $LIB -> _mul($LIB -> _div($LIB -> _copy($q), $gcd_sq),
448 $LIB -> _div($LIB -> _copy($r), $gcd_pr));
474 $self -> {_n} = $LIB -> _copy($p);
475 $self -> {_d} = $LIB -> _mul($LIB -> _copy($q), $m);
508 $self -> {_n} = $LIB -> _mul($LIB -> _copy($q), $m);
[all …]
DBigFloat.pm400 $self -> {_m} = $LIB -> _copy($wanted -> {_m});
402 $self -> {_e} = $LIB -> _copy($wanted -> {_e});
413 $self->{_m} = $LIB -> _copy($wanted -> {value});
1307 $copy->{_m} = $LIB->_copy($x->{_m});
1308 $copy->{_e} = $LIB->_copy($x->{_e});
1338 $y = $LIB->_copy($x->{_m});
1572 $ex = $LIB->_copy($x->{_e});
1573 $ey = $LIB->_copy($y->{_e});
1580 $ex = $LIB->_copy($x->{_e});
1592 $ey = $LIB->_copy($y->{_e});
[all …]
DBigInt.pm726 $self -> {value} = $LIB -> _copy($wanted -> {value});
1441 $copy->{value} = $LIB->_copy($x->{value});
2119 $zv = $LIB -> _copy($zv) if refaddr($x) eq refaddr($z);
2812 my $mod = $LIB->_copy($mod->{value});
2826 my $mod = $LIB->_copy($mod->{value});
3623 $y[$i]{value} = $LIB -> _add($LIB -> _copy($y[$i - 1]{value}),
3689 $y[$i]{value} = $LIB -> _add($LIB -> _copy($y[$i - 1]{value}),
6459 my $num_lib = $LIB -> _copy($mabs);
6461 my $gcd_lib = $LIB -> _gcd($LIB -> _copy($num_lib), $den_lib);
6462 $num_lib = $LIB -> _div($LIB -> _copy($num_lib), $gcd_lib);
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt/Lib/
DMinimal.pm170 $yv = $c->_copy($xv) if $xv == $yv; # same references?
222 $rem = $c->_mod($c->_copy($x), $yorg) if wantarray;
243 $rem = $c->_copy($x) if wantarray; # make copy
255 $rem = $c->_copy($x) if wantarray; # make copy
276 $rem = $c->_copy($x) if $a != 0; # a < 0 => x < y => rem = x
288 my $y = $c->_copy($yorg); # always make copy to preserve
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/
DFastCalc.xs32 # * added __strip_zeros(), _copy()
103 # _copy
106 _copy(class, x)
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/
Dbigints.t82 # _copy
85 is($class->_str($class->_copy($x)), 12356,
86 "$class->_str($class->_copy(\$x))");
Dbigintc.t204 # _copy
208 is($LIB->_str($LIB->_copy($x)), "$_",
209 qq|$LIB->_str($LIB->_copy(\$x)) = "$_"|);
210 is($LIB->_str($x), "$_", # did _copy destroy original x?
/openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils/
DInstall.pm510 sub _copy { subroutine
791 _copy( $sourcefile, $targetfile, $verbose, $dry_run, );
1197 _copy( $from, $to );
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt/
DScalar.pm61 sub _copy { subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/t/
Dbigintfc.t204 # _copy
208 is($LIB->_str($LIB->_copy($x)), "$_",
209 qq|$LIB->_str($LIB->_copy(\$x)) = "$_"|);
210 is($LIB->_str($x), "$_", # did _copy destroy original x?