Home
last modified time | relevance | path

Searched refs:reduce (Results 1 – 19 of 19) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/
DBase.php79 return static::reduce($x, $n);
94 return static::reduce(bcmul($x, $y), $n);
108 return static::reduce(bcmul($x, $x), $n);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
DPowerOfTwo.php35 return self::reduce($x, $n, $class);
46 protected static function reduce(array $x, array $n, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\PowerOfTwo
DClassic.php33 protected static function reduce(array $x, array $n, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\Classic
DMontgomery.php55 protected static function reduce(array $x, array $n, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\Montgomery
DBarrett.php49 protected static function reduce(array $n, array $m, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\Barrett
DEvalBarrett.php44 protected static function reduce(array $n, array $m, $class) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\EvalBarrett
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
DInteger.php52 protected static $reduce; variable in phpseclib3\\Math\\PrimeField\\Integer
73 $reduce = static::$reduce[$instanceID];
74 $this->value = $reduce($num);
97 static::$reduce[$instanceID] = $function;
109 unset(static::$reduce[$instanceID]);
248 $reduce = static::$reduce[$this->instanceID];
278 $c = $reduce($b->multiply($b));
279 $t = $reduce($t->multiply($c));
280 $r = $reduce($r->multiply($b));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
DBase.php111 return static::reduce($x, $n, $class);
127 return static::reduce($temp[self::VALUE], $n, $class);
141 return static::reduce($class::square($x), $n, $class);
/dokuwiki/vendor/splitbrain/lesserphp/src/
DLessc.php479 $name .= ' ' . $this->compileValue($this->reduce($block->value));
670 $this->compileValue($this->reduce($q[2])) . ')';
676 $parts[] = $this->compileValue($this->reduce($q));
792 $out[] = trim($this->compileValue($this->reduce($value)));
827 $passed = $this->reduce($guard) == Constants::TRUE;
987 $value = $this->reduce($value);
1000 $this->set($last[1], $this->reduce(['list', ' ', $rest]));
1024 $this->compileValue($this->reduce($value))
1042 $orderedArgs[] = $this->reduce(['variable', $arg[1]]);
1044 $keywordArgs[$arg[1]] = $this->reduce($arg[2]);
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/src/Functions/
DStrings.php62 $this->lessc->reduce($values[$i]) : ['keyword', ''];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
DPrimeField.php63 $this->reduce = $func->bindTo($this, $this);
DBinaryField.php85 $reduce = function ($c) use ($u, $mStart, $m, $t, $finalMask, $pad, $h) {
115 Integer::setRecurringModuloFunction($this->instanceID, $reduce);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
DEvalBarrett.php43 protected static function reduce($n, $m) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\Reductions\\EvalBarrett
DBarrett.php60 protected static function reduce($n, $m) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\Reductions\\Barrett
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
DInteger.php61 protected static $reduce; variable in phpseclib3\\Math\\BinaryField\\Integer
72 $reduce = static::$reduce[$instanceID];
73 $this->value = $reduce($num);
92 static::$reduce[$instanceID] = $function;
/dokuwiki/inc/Parsing/Lexer/
DLexer.php142 while (is_array($parsed = $this->reduce($raw))) {
284 protected function reduce(&$raw) function in dokuwiki\\Parsing\\Lexer\\Lexer
/dokuwiki/vendor/geshi/geshi/
DBUGS17 making some sort of "cache" effect to speed things up and reduce server load.
DCHANGELOG668 - Added a new parameter for enable_highlighting to reduce source duplication (SF #1786104, BenBE)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DEngine.php112 protected $reduce; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine
728 $temp->value = static::reduce($result, $n_value, $class);