Home
last modified time | relevance | path

Searched refs:_xor (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/
Dbigints.t130 # _and, _or, _xor
139 is($class->_str($class->_xor($x, $y)), 5,
140 "$class->_str($class->_xor($x, $y))");
Dbigintc.t612 # _and, _or, _xor
616 is($LIB->_str(scalar($LIB->_xor($x, $y))), 7,
617 qq|$LIB->_str(scalar($LIB->_xor(\$x, \$y))) = 7|);
/openbsd/src/gnu/usr.bin/perl/t/op/
Dbop.t97 sub _xor($) { $_[0] ^ native_to_uni("+0") }
102 is _xor native_to_uni("yit"), native_to_uni('RYt'), 'str var ^ const str';
103 is _xor native_to_uni("yit"), native_to_uni('RYt'), 'str var ^ const str again';
110 is _xor 0, '0', 'num var ^ const str';
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt/
DScalar.pm183 sub _xor { subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/t/
Dbigintfc.t612 # _and, _or, _xor
616 is($LIB->_str(scalar($LIB->_xor($x, $y))), 7,
617 qq|$LIB->_str(scalar($LIB->_xor(\$x, \$y))) = 7|);
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/BigInt/
DLib.pm229 return $class -> _xor($x, $y);
1184 sub _xor {
DCalc.pm2195 sub _xor { subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/
DBigInt.pm4197 $x->{value} = $LIB->_xor($x->{value}, $y->{value});