Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DPHP.php224 * @param array $x_value
230 protected static function addHelper(array $x_value, $x_negative, array $y_value, $y_negative) argument
232 $x_size = count($x_value);
242 self::VALUE => $x_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 ?
268 $value = $x_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.php214 * @param array $x_value
222 …private static function multiplyLower(array $x_value, $x_negative, array $y_value, $y_negative, $s… argument
224 $x_length = count($x_value);
235 $temp = $x_value;
236 $x_value = $y_value;
239 $x_length = count($x_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;