Home
last modified time | relevance | path

Searched refs:x_value (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php216 * @param array $x_value
222 protected static function addHelper(array $x_value, $x_negative, array $y_value, $y_negative) argument
224 $x_size = count($x_value);
234 self::VALUE => $x_value,
241 if ($x_value == $y_value) {
248 $temp = self::subtractHelper($x_value, false, $y_value, false);
249 $temp[self::SIGN] = self::compareHelper($x_value, false, $y_value, false) > 0 ?
260 $value = $x_value;
268 … $sum = ($x_value[$j] + $y_value[$j]) * static::BASE_FULL + $x_value[$i] + $y_value[$i] + $carry;
279 $sum = $x_value[$i] + $y_value[$i] + $carry;
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php223 * @param array $x_value
231 …private static function multiplyLower(array $x_value, $x_negative, array $y_value, $y_negative, $s… argument
233 $x_length = count($x_value);
244 $temp = $x_value;
245 $x_value = $y_value;
248 $x_length = count($x_value);
263 $temp = $x_value[$j] * $y_value[0] + $carry; // $product_value[$k] == 0
279 $temp = $product_value[$k] + $x_value[$j] * $y_value[$i] + $carry;