Home
last modified time | relevance | path

Searched refs:multiplyHelper (Results 1 – 5 of 5) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php106 $temp = $class::multiplyHelper($msd, false, $m1, false); // m.length + (m.length >> 1)
116 $temp = $class::multiplyHelper($temp, false, $u, false);
122 $temp = $class::multiplyHelper($temp, false, $m, false);
182 $temp = $class::multiplyHelper($temp, false, $cache[self::DATA][$key], false);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DBase.php132 $temp = $class::multiplyHelper($x, false, $y, false);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php143 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP64.php147 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP.php405 … protected static function multiplyHelper(array $x_value, $x_negative, array $y_value, $y_negative) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP