Searched refs:compareHelper (Results 1 – 6 of 6) sorted by relevance
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/ |
H A D | Barrett.php | 130 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 D | MontgomeryMult.php | 76 if (self::compareHelper($a[self::VALUE], false, $m, false) >= 0) {
|
H A D | Montgomery.php | 86 if (self::compareHelper($result, false, $n, false) >= 0) {
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
H A D | PHP32.php | 255 return $this->compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
|
H A D | PHP64.php | 259 return parent::compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
|
H A D | PHP.php | 257 $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
|