Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 52) sorted by relevance

123

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php68 private $x;
166 * @param int $x
169 public function setDimensions($x, $y)
171 $this->max_x = $x - 1;
173 $this->x = $this->y = 0;
231 $this->old_x = $this->x;
233 $this->x = $this->y = 0;
248 $this->screen[$this->y] = substr($this->screen[$this->y], 0, $this->x);
250 array_splice($this->attrs[$this->y], $this->x + 1, $this->max_x - $this->x, array_fil
78 var $x; global() variable in phpseclib\\File\\ANSI
191 setDimensions($x, $y) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php165 * @param string|int|BigInteger\Engines\Engine $x Base-10 number or base-$base number if $base set.
168 public function __construct($x = 0, $base = 10)
172 if ($x instanceof self::$mainEngine) {
173 $this->value = clone $x;
174 } elseif ($x instanceof BigInteger\Engines\Engine) {
175 $this->value = new static("$x");
176 $this->value->setPrecision($x->getPrecision());
178 $this->value = new self::$mainEngine($x, $base);
271 * @param BigInteger $x
274 public function multiply(BigInteger $x)
251 __construct($x = 0, $base = 10) global() argument
1137 multiply($x) global() argument
1310 _square($x = false) global() argument
1906 _reduce($x, $n, $mode) global() argument
1943 _prepareReduce($x, $n, $mode) global() argument
1962 _multiplyReduce($x, $y, $n, $mode) global() argument
1981 _squareReduce($x, $n, $mode) global() argument
2128 _regularBarrett($x, $n) global() argument
2281 _montgomery($x, $n) global() argument
2329 _montgomeryMultiply($x, $y, $m) global() argument
2380 _prepMontgomery($x, $n) global() argument
2417 _modInverse67108864($x) global() argument
2761 equals($x) global() argument
2801 bitwise_and($x) global() argument
2842 bitwise_or($x) global() argument
2882 bitwise_xor($x) global() argument
3657 _base256_lshift(& $x, $shift) global() argument
3686 _base256_rshift(& $x, $shift) global() argument
3727 _int2bytes($x) global() argument
3739 _bytes2int($x) global() argument
3778 _safe_divide($x, $y) global() argument
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php153 for ($x=0;$x < $subcount; $x++) {
154 $subauth[$x] =
155 hexdec($this->littleEndian(substr($hex_sid, 16 + ($x * 8), 8)));
156 $result .= "-" . $subauth[$x];
172 for ($x = strlen($hex) - 2; $x >= 0; $x = $x
[all...]
/dokuwiki/lib/tpl/dokuwiki/images/
H A Dpagetools-build.php103 for($x = 0; $x < $w; $x++){
105 $rgba = imagecolorat($img, $x, $y);
116 imagesetpixel($img, $x, $y, $color);
H A Dpage-background.svg7 <rect x="0" y="0" width="100%" height="100%" fill="url(#g)" />
/dokuwiki/inc/lang/az/
H A Dedit.txt
H A Dmailtext.txt
H A Dnorev.txt
H A Drevisions.txt
/dokuwiki/inc/
H A Dchangelog.php227 $x = $media_rec;
228 $x['mode'] = RevisionInfo::MODE_MEDIA;
232 $x = $rec;
234 $x['mode'] = RevisionInfo::MODE_MEDIA;
236 $x['mode'] = RevisionInfo::MODE_PAGE;
241 $recent[] = $x;
/dokuwiki/inc/lang/vi/
H A Dindex.txt
H A Dlogin.txt
H A Ddraft.txt
H A Donceexisted.txt
H A Dresendpwd.txt
H A Dpwconfirm.txt
H A Dmailtext.txt
/dokuwiki/inc/Parsing/Handler/
H A DBlock.php96 $x = $ccount; $x > $i;
97 $x--
/dokuwiki/conf/
H A Dmime.conf22 tar !application/x-gtar
27 7z !application/x-7z-compressed
74 #swf application/x-shockwave-flash
/dokuwiki/lib/plugins/acl/lang/vi/
H A Dhelp.txt
/dokuwiki/lib/images/interwiki/
H A Dphpfn.svg1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-label="PHP" viewBox="0 0 512 512"><rect width="512" height="512" rx="15%" fill="#777bb3"/><g stroke="#fff" stroke-width="6"><path id="a" d="M155 202H97a3 3 0 0 0-3 2L67 345c0 3 3 3 3 3h30c3 0 3-2 3-2l7-35h27c42 0 63-28 68-53s1-56-50-56zm13 54c-4 19-17 27-35 27h-18l11-53h18c27 0 26 10 24 26z"/><path d="M275 311c-4 0-3-4-3-4l12-61c0-8 6-16-18-15h-18l-15 78s0 3-4 3h-29c-3 0-3-3-3-3l28-141s0-2 4-2h30c3 0 2 3 2 3l-7 34h26c36 0 45 17 42 37l-13 69s0 3-5 3z"/><use xlink:href="#a" x="239"/></g></svg
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DHISTORY.md
/dokuwiki/lib/plugins/revert/lang/vi/
H A Dintro.txt
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php513 * @param bool|\phpseclib3\Math\BigInteger $x
517 protected function i2osp($x, $xLen)
519 if ($x === false) {
522 $x = $x->toBytes();
523 if (strlen($x) > $xLen) {
526 return str_pad($x, $xLen, chr(0), STR_PAD_LEFT);
534 * @param string $x
537 protected function os2ip($x)
539 return new BigInteger($x, 25
2282 _i2osp($x, $xLen) global() argument
2301 _os2ip($x) global() argument
2315 _exponentiate($x) global() argument
2401 _blind($x, $r, $i) global() argument
2427 _equals($x, $y) global() argument
[all...]
H A DHash.php598 $toUInt32 = function ($x) {
599 $x = new BigInteger($x, 256);
600 $x->setPrecision(32);
601 return $x;
975 $x = $y = 0;
977 $s[$x][$y][0] ^= $pi[$i + 1];
978 $s[$x][$y][1] ^= $pi[$i];
981 $x++;
1116 * @param array $x
[all...]

123