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/
H A DPHP.php224 * @param array $x_value
309 * @param array $x_value
351 $temp = $x_value;
387 --$x_value[$i];
399 * @param array $x_value
438 * @param array $x_value
478 * @param array $x_value
617 isset($x_value[$i]) ? $x_value[$i] : 0,
618 isset($x_value[$i - 1]) ? $x_value[$i - 1] : 0,
619 isset($x_value[$i - 2]) ? $x_value[$i - 2] : 0
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A 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;