Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php109 $temp = $class::multiplyHelper($msd, false, $m1, false); // m.length + (m.length >> 1)
123 $temp = $class::multiplyHelper($temp, false, $u, false);
129 $temp = $class::multiplyHelper($temp, false, $m, false);
191 $temp = $class::multiplyHelper($temp, false, $cache[self::DATA][$key], false);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DBase.php126 $temp = $class::multiplyHelper($x, false, $y, false);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php143 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP32.php142 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
H A DPHP.php397 … protected static function multiplyHelper(array $x_value, $x_negative, array $y_value, $y_negative) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP