Home
last modified time | relevance | path

Searched refs:array_repeat (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DMontgomery.php36 $lhs->value = array_merge(self::array_repeat(0, count($n)), $x);
76 $temp = array_merge(self::array_repeat(0, $i), $temp);
H A DBarrett.php87 $lhs_value = self::array_repeat(0, $m_length + ($m_length >> 1));
180 $lhs_value = self::array_repeat(0, 2 * $n_length);
202 $corrector_value = self::array_repeat(0, $n_length + 1);
252 $product_value = self::array_repeat(0, $x_length + $y_length);
H A DMontgomeryMult.php61 $a = [self::VALUE => self::array_repeat(0, $n + 1)];
H A DEvalBarrett.php88 $lhs_value = self::array_repeat(0, $m_length + ($m_length >> 1));
97 $lhs_value = self::array_repeat(0, 2 * $m_length);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php483 $product_value = self::array_repeat(0, $x_length + $y_length);
580 $quotient_value = self::array_repeat(0, $x_max - $y_max + 1);
597 $temp_value = array_merge(self::array_repeat(0, $x_max - $y_max), $y_value);
642 $adjust = self::array_repeat(0, $q_index);
898 protected static function array_repeat($input, $multiplier) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP
1015 $square_value = self::array_repeat(0, 2 * count($value));