Home
last modified time | relevance | path

Searched refs:slidingWindow (Results 1 – 4 of 4) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DMontgomery.php51 protected static function slidingWindow(Engine $x, Engine $e, Engine $n, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Montgomery
55 return parent::slidingWindow($x, $e, $n, $class);
76 $part1 = $mod1->value != [1] ? parent::slidingWindow($x, $e, $mod1, $class) : new $class();
77 $part2 = PowerOfTwo::slidingWindow($x, $e, $mod2, $class);
H A DBase.php103 return $x->normalize(static::slidingWindow($x, $e, $n, $class));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/
H A DBase.php71 return $x->normalize(static::slidingWindow($x, $e, $n, $class));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php668 protected static function slidingWindow(Engine $x, Engine $e, Engine $n, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\Engine