Home
last modified time | relevance | path

Searched refs:x (Results 151 – 175 of 1696) sorted by path

12345678910>>...68

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DClassic.php32 * @param array $x
37 protected static function reduce(array $x, array $n, $class) argument
40 $lhs->value = $x;
H A DEvalBarrett.php256 * @param string $x
262 private static function generateInlineAdd($x, $y, $result, $class) argument
265 $length = max(count($' . $x . '), count($' . $y . '));
266 $' . $result . ' = array_pad($' . $x . ', $length + 1, 0);
H A DMontgomery.php32 * @param array $x
37 protected static function prepareReduce(array $x, array $n, $class) argument
40 $lhs->value = array_merge(self::array_repeat(0, count($n)), $x);
54 * @param array $x
59 protected static function reduce(array $x, array $n, $class) argument
68 $cache[self::VARIABLE][] = $x;
74 $result = [self::VALUE => $x];
114 * @param array $x
120 $x = -$x[0];
121 $result = $x & 0x3; // x**-1 mod 2**2
[all …]
H A DMontgomeryMult.php38 * @param array $x
44 public static function multiplyReduce(array $x, array $y, array $m, $class) argument
62 $n = max(count($x), count($y), count($m));
63 $x = array_pad($x, $n, 0);
68 $temp = $a[self::VALUE][0] + $x[$i] * $y[0];
72 …$temp = $class::addHelper($class::regularMultiply([$x[$i]], $y), false, $class::regularMultiply([$…
H A DPowerOfTwo.php32 * @param array $x
37 protected static function prepareReduce(array $x, array $n, $class) argument
39 return self::reduce($x, $n, $class);
45 * @param array $x
50 protected static function reduce(array $x, array $n, $class) argument
53 $lhs->value = $x;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php204 * @param PHP32 $x
207 public function bitwise_and(PHP32 $x) argument
209 return $this->bitwiseAndHelper($x);
215 * @param PHP32 $x
218 public function bitwise_or(PHP32 $x) argument
220 return $this->bitwiseOrHelper($x);
226 * @param PHP32 $x
229 public function bitwise_xor(PHP32 $x) argument
263 * @param PHP32 $x
266 public function equals(PHP32 $x) argument
[all …]
H A DPHP64.php208 * @param PHP64 $x
211 public function bitwise_and(PHP64 $x) argument
213 return $this->bitwiseAndHelper($x);
219 * @param PHP64 $x
222 public function bitwise_or(PHP64 $x) argument
224 return $this->bitwiseOrHelper($x);
230 * @param PHP64 $x
233 public function bitwise_xor(PHP64 $x) argument
267 * @param PHP64 $x
270 public function equals(PHP64 $x) argument
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBinaryField.php164 * @param string $x
168 public static function base2ToBase256($x, $size = null) argument
170 $str = Strings::bits2bin($x);
172 $pad = strlen($x) >> 3;
173 if (strlen($x) & 3) {
187 * @param string $x
190 public static function base256ToBase2($x) argument
193 return gmp_strval(gmp_import($x), 2);
196 return Strings::bin2bits($x);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php133 $b = $x->value;
151 $x = ltrim($x, "\0");
174 $r = $x;
200 $x = strrev(BinaryField::base256ToBase2($x));
206 $x = str_pad($x, $length, '0');
212 $x = strrev($x);
242 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
291 $x = unpack('N', $x)[1];
329 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
344 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php145 public function equals(self $x) argument
147 static::checkInstance($this, $x);
157 public function compare(self $x) argument
159 static::checkInstance($this, $x);
169 public function add(self $x) argument
171 static::checkInstance($this, $x);
187 public function subtract(self $x) argument
189 static::checkInstance($this, $x);
205 public function multiply(self $x) argument
217 public function divide(self $x) argument
[all …]
/plugin/authmantis/
H A DREADME.md36 MantisBT releases 1.2.x or later and 2.x are fully supported.
/plugin/authnc/
H A DREADME.md19 * [x] Only allow login for enabled users
/plugin/authphpbb3/
H A DREADME.md2 DokuWiki plugin used to authenticate users using phpBB 3.x backend.
H A Dplugin.info.txt5 name phpBB 3.x SSO & Authentication Plugin
6 desc Provides user authentication using phpBB 3.x backend.
/plugin/authradius/
H A Ddes.php290 $x .= sprintf('%02s', dechex($odd_parity[bindec($s . '0')]));
293 return pack('H*', $x);
/plugin/authshibboleth/
H A DREADME.md17 * PHP >= 5.x
18 * Shibboleth SP 2.x instance
30 You need Shibboleth SP 2.x installed and running. In Apache you have to configure Shibboleth to "kn…
/plugin/authwordpress/
H A DREADME.md54 On the back-end side, the plugin supports WordPress releases 4.x to 6.x.
/plugin/autogroup/
H A Daction.php43 …$raw_cfg = array_map(function($x){return explode(',',$x,3);}, explode("\n", $this->getConf('regex'…
/plugin/autolink2/
H A Daction.php34 $x=$event->data;
35 if (substr($x,0,14)=='~~noautolink~~') {
36 $event->data = substr($x,14);
42 $replaced = preg_replace($pattern,$replace,$x);
43 $x=$replaced;
44 $event->data = $x;
51 $x=$event->data[0][1];
57 if (empty($x)) {
H A Dadmin.php101 $x=p_render('xhtml',p_get_instructions($lnk),$info);
102 $x=substr($x,4,-5);
103 ptln($x);
/plugin/autolink2/syntax/
H A Dshow.php72 $x=$match;
77 $x=p_render('xhtml',p_get_instructions($replaced),$info);
78 return $x;
/plugin/avatar/parts/
H A Dmonsterparts.xcf1 gimp xcf filexxB�B� S gimp-commentCreated with The GIMPgimp-image-grid(style intersections)
14 ��_ G ��y#��$ �$k&A*12>5^7�9x<=�AVD�G�PX�`�i�sQ|�������@�����Ƿ�>ب�Cݱ��������� ������=�Txx Mouth_10.png� 
20    YCxx[�xxw���7��=��<�= �4�=�� � @ @ @���5��6��4�6�7��
25 B<<x
[all...]
/plugin/badbehaviour/
H A Dbadbehavior.readme56 *Warning*: If you are upgrading from a 2.0.x release of Bad Behavior, it is
58 installing the 2.2.x release, or obsolete files may be left lying around.
60 *Warning*: If you are upgrading from a 1.x.x version of Bad Behavior,
62 database tables, before installing Bad Behavior 2.2.x or 2.0.x. If you are
/plugin/barcode/
H A Dplugin.info.txt6 desc 2D-Barcode Plugin. Syntax: ~~BARCODE~id=css_id~class=css_class~mode=0~size=M~caption=x~url=h…
/plugin/barcodes/
H A Dcomposer.lock272 "dev-master": "2.0.x-dev"

12345678910>>...68