Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DPHP.php226 * @param array $y_value
230 protected static function addHelper(array $x_value, $x_negative, array $y_value, $y_negative) argument
233 $y_size = count($y_value);
237 self::VALUE => $y_value,
249 if ($x_value == $y_value) {
256 $temp = self::subtractHelper($x_value, false, $y_value, false);
257 $temp[self::SIGN] = self::compareHelper($x_value, false, $y_value, false) > 0 ?
265 $value = $y_value;
276 … $sum = ($x_value[$j] + $y_value[$j]) * static::BASE_FULL + $x_value[$i] + $y_value[$i] + $carry;
287 $sum = $x_value[$i] + $y_value[$i] + $carry;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
DBarrett.php216 * @param array $y_value
222 …private static function multiplyLower(array $x_value, $x_negative, array $y_value, $y_negative, $s… argument
225 $y_length = count($y_value);
236 $x_value = $y_value;
237 $y_value = $temp;
240 $y_length = count($y_value);
254 $temp = $x_value[$j] * $y_value[0] + $carry; // $product_value[$k] == 0
270 $temp = $product_value[$k] + $x_value[$j] * $y_value[$i] + $carry;