Home
last modified time | relevance | path

Searched refs:x (Results 426 – 450 of 1696) sorted by last modified time

1...<<11121314151617181920>>...68

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php76 parent::__construct($x, $base);
99 0x1000000 * ord($x[$i]) + ((ord($x[$i + 1]) << 16) | (ord(
100 $x[$i + 2]
198 * @param BCMath $x
329 * @param BCMath $x
340 * @param BCMath $x
351 * @param BCMath $x
419 * @param BCMath $x
422 public function equals(BCMath $x) argument
663 public function testBit($x) argument
[all …]
H A DEngine.php145 if (empty($x) && (abs($base) != 256 || $x !== '0')) {
171 $x = substr($x, 1);
174 $x = preg_replace('#^(?:0x)?([A-Fa-f0-9]*).*#', '$1', $x);
179 $x = Hex::encode(~Hex::decode($x));
205 $x = substr($x, 1);
208 $x = preg_replace('#^([01]*).*#', '$1', $x);
334 $x = $x->compare(static::$zero[static::class]) < 0 ? $x->add($n) : $x;
504 * @param string $x
524 $x = $carry . $x . str_repeat(chr(0), $num_bytes);
662 * @param Engine $x
[all …]
H A DOpenSSL.php43 * @param Engine $x
48 public static function powModHelper(Engine $x, Engine $e, Engine $n) argument
59 $plaintext = str_pad($x->toBytes(), $n->getLengthInBytes(), "\0", STR_PAD_LEFT);
69 $class = get_class($x);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP/
H A DDefaultEngine.php32 * @param GMP $x
37 protected static function powModHelper(GMP $x, GMP $e, GMP $n) argument
40 $temp->value = gmp_powm($x->value, $e->value, $n->value);
42 return $x->normalize($temp);
/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);
H A DBigInteger.php176 $this->value = clone $x;
274 * @param BigInteger $x
347 'x' => new static($x),
509 * @param BigInteger $x
512 public function equals(BigInteger $x) argument
530 * @param BigInteger $x
541 * @param BigInteger $x
552 * @param BigInteger $x
821 * @param int $x
824 public function testBit($x) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/
H A DGoogleCloudVideointelligenceV1p2beta1NormalizedVertex.php25 public $x; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p2beta1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVideointelligenceV1p3beta1NormalizedVertex.php25 public $x; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p3beta1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DGoogleCloudVisionV1p1beta1Position.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p1beta1Position
38 public function setX($x) argument
40 $this->x = $x;
47 return $this->x;
H A DGoogleCloudVisionV1p1beta1Vertex.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p1beta1Vertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVisionV1p3beta1NormalizedVertex.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p3beta1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVisionV1p4beta1Vertex.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1Vertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVisionV1p2beta1Position.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p2beta1Position
38 public function setX($x) argument
40 $this->x = $x;
47 return $this->x;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md722 echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleCloudDocumentaiV1beta1NormalizedVertex.php25 public $x; variable in Google\\Service\\Document\\GoogleCloudDocumentaiV1beta1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php38 protected $x; variable in phpseclib3\\Crypt\\DSA\\PrivateKey
67 $this->y = $this->g->powMod($this->x, $this->p);
115 $temp = $h->add($this->x->multiply($r));
154 $this->y = $this->g->powMod($this->x, $this->p);
157 …return $type::savePrivateKey($this->p, $this->q, $this->g, $this->y, $this->x, $this->password, $o…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DKoblitzPrime.php242 list($x, $y) = $p;
244 $temp = $x->multiply($x)->multiply($x);
H A DMontgomery.php127 * @param BigInteger|PrimeInteger $x
131 public function setBasePoint($x, $y) argument
134 case !$x instanceof BigInteger && !$x instanceof PrimeInteger:
143 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x,
226 $alreadyInternal = isset($x[1]);
228 $x = $p[0];
235 list($p2, $p1) = $this->doubleAndAddPoint($p2, $p1, $x);
237 list($p1, $p2) = $this->doubleAndAddPoint($p1, $p2, $x);
280 list($x, $z) = $p;
281 return [$x->divide($z)];
H A DPrime.php155 case !$x instanceof BigInteger && !$x instanceof PrimeInteger:
164 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x,
347 return [$x, $y];
369 list($x, $y, $z) = $p;
370 $x2 = $x->multiply($x);
392 list($x, $y) = $p;
393 $x2 = $x->multiply($x);
436 return [$x, $y];
478 list($x, $y) = $p;
481 $temp = $x->multiply($x)->multiply($x)->add($temp);
[all …]
H A DTwistedEdwards.php120 public function setBasePoint($x, $y) argument
123 case !$x instanceof BigInteger && !$x instanceof PrimeInteger:
132 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x,
185 list($x, $y, $z) = $p;
188 $x->multiply($z),
210 list($x, $y) = $p;
211 $x2 = $x->multiply($x);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php618 $x = new BigInteger($x, 256);
619 $x->setPrecision(32);
620 return $x;
1001 $x = $y = 0;
1007 $x++;
1144 * @param array $x
1150 list($hi, $lo) = $x;
1194 $x = $y = 0;
1199 $x++;
1313 * @param int $x
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php106 protected function exponentiate(BigInteger $x) argument
115 return $x->modPow($this->exponent, $this->modulus);
153 1 => $this->blind($x, $r, 1),
154 2 => $this->blind($x, $r, 2)
163 $m_i = $this->blind($x, $r, $i);
190 private function blind($x, $r, $i) argument
192 $x = $x->multiply($r->modPow($this->publicExponent, $this->primes[$i]));
193 $x = $x->modPow($this->exponents[$i], $this->primes[$i]);
196 $x = $x->multiply($r);
197 list(, $x) = $x->divide($this->primes[$i]);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DBarrett.php149 * @param string $x
153 private static function regularBarrett($x, $n) argument
162 if (strlen($x) > 2 * $n_length) {
163 return bcmod($x, $n);
173 $temp = substr($x, 0, -$n_length + 1);
177 $r1 = substr($x, -$n_length - 1);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DBase.php77 * @param PHP $x
88 return $x->normalize($temp);
92 list(, $temp) = $x->divide($n);
93 return $x->normalize($temp);
98 $temp->value = $class::square($x->value);
100 return $x->normalize($temp);
103 return $x->normalize(static::slidingWindow($x, $e, $n, $class));
109 * @param array $x
117 return static::reduce($x, $n, $class);
123 * @param array $x
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
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;

1...<<11121314151617181920>>...68