Home
last modified time | relevance | path

Searched refs:y (Results 126 – 129 of 129) sorted by path

123456

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php2427 _equals($x, $y) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php75 private $y;
167 * @param int $y
169 public function setDimensions($x, $y)
172 $this->max_y = $y - 1;
173 $this->x = $this->y = 0;
232 $this->old_y = $this->y;
233 $this->x = $this->y = 0;
236 $this->history = array_merge($this->history, array_slice(array_splice($this->screen, $this->y + 1), 0, $this->old_y));
237 $this->screen = array_merge($this->screen, array_fill($this->y, $this->max_y, ''));
239 $this->history_attrs = array_merge($this->history_attrs, array_slice(array_splice($this->attrs, $this->y
86 var $y; global() variable in phpseclib\\File\\ANSI
191 setDimensions($x, $y) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php249 * @param BigInteger $y
252 public function add(BigInteger $y)
254 return new static($this->value->add($y->value));
260 * @param BigInteger $y
263 public function subtract(BigInteger $y)
265 return new static($this->value->subtract($y->value));
301 * @param BigInteger $y
304 public function divide(BigInteger $y)
306 list($q, $r) = $this->value->divide($y->value);
340 * @var BigInteger $y
875 add($y) global() argument
1004 subtract($y) global() argument
1422 divide($y) global() argument
1962 _multiplyReduce($x, $y, $n, $mode) global() argument
2329 _montgomeryMultiply($x, $y, $m) global() argument
2696 compare($y) global() argument
3778 _safe_divide($x, $y) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php

123456