Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php218 * @param array $y_value
222 protected static function addHelper(array $x_value, $x_negative, array $y_value, $y_negative) argument
225 $y_size = count($y_value);
229 self::VALUE => $y_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 ?
257 $value = $y_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.php225 * @param array $y_value
231 …private static function multiplyLower(array $x_value, $x_negative, array $y_value, $y_negative, $s… argument
234 $y_length = count($y_value);
245 $x_value = $y_value;
246 $y_value = $temp;
249 $y_length = count($y_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;