Home
last modified time | relevance | path

Searched refs:compareHelper (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php137 while (self::compareHelper($result[self::VALUE], $result[self::SIGN], $m, false) >= 0) {
203 if (self::compareHelper($result, false, $temp[self::VALUE], $temp[self::SIGN]) < 0) {
212 while (self::compareHelper($result[self::VALUE], $result[self::SIGN], $n, false) > 0) {
H A DMontgomeryMult.php71 if (self::compareHelper($a[self::VALUE], false, $m, false) >= 0) {
H A DMontgomery.php82 if (self::compareHelper($result, false, $n, false) >= 0) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php254 return parent::compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP32.php253 return $this->compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP.php249 $temp[self::SIGN] = self::compareHelper($x_value, false, $y_value, false) > 0 ?
332 $diff = self::compareHelper($x_value, $x_negative, $y_value, $y_negative);
786 … protected static function compareHelper(array $x_value, $x_negative, array $y_value, $y_negative) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP