Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php130 while (self::compareHelper($result[self::VALUE], $result[self::SIGN], $m, false) >= 0) {
192 if (self::compareHelper($result, false, $temp[self::VALUE], $temp[self::SIGN]) < 0) {
201 while (self::compareHelper($result[self::VALUE], $result[self::SIGN], $n, false) > 0) {
H A DMontgomeryMult.php76 if (self::compareHelper($a[self::VALUE], false, $m, false) >= 0) {
H A DMontgomery.php86 if (self::compareHelper($result, false, $n, false) >= 0) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php255 return $this->compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP64.php259 return parent::compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP.php257 $temp[self::SIGN] = self::compareHelper($x_value, false, $y_value, false) > 0 ?
340 $diff = self::compareHelper($x_value, $x_negative, $y_value, $y_negative);
791 … protected static function compareHelper(array $x_value, $x_negative, array $y_value, $y_negative) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP