Home
last modified time | relevance | path

Searched refs:b (Results 101 – 125 of 2511) sorted by path

12345678910>>...101

/plugin/authgooglesheets/vendor/google/apiclient-services/
H A DLICENSE97 (b) You must cause any modified files to carry prominent notices
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DStorage.php124 'path' => 'b/{bucket}/acl',
138 'path' => 'b/{bucket}/acl',
200 'path' => 'b/{bucket}',
222 'path' => 'b/{bucket}',
248 'path' => 'b/{bucket}/iam',
341 'path' => 'b/{bucket}',
375 'path' => 'b/{bucket}/iam',
409 'path' => 'b/{bucket}',
868 … 'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}',
1050 'path' => 'b/{bucket}/o',
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/
H A DLICENSE97 (b) You must cause any modified files to carry prominent notices
/plugin/authgooglesheets/vendor/google/auth/
H A DCOPYING98 (b) You must cause any modified files to carry prominent notices
H A DLICENSE97 (b) You must cause any modified files to carry prominent notices
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php478 function ($code, $a, $b, $c, $transferred, $total) use ($value) {
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md27 $b = Psr7\Utils::streamFor('123.');
28 $composed = new Psr7\AppendStream([$a, $b]);
400 PHP style arrays into an associative array (e.g., `foo[a]=1&foo[b]=2`
401 will be parsed into `['foo[a]' => '1', 'foo[b]' => '2'])`.
720 $base = new Uri('http://example.com/a/b/');
721 echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'.
723 echo UriResolver::relativize($base, new Uri('http://example.com/a/b/?q')); // prints '?q'.
724 …iResolver::relativize($base, new Uri('http://example.org/a/b/')); // prints '//example.org/a/b/'.
784 Example: `http://example.org/../a/b/../c/./d.html` → `http://example.org/a/c/d.html`
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DRotatingFileHandler.php154 usort($logFiles, function ($a, $b) {
155 return strcmp($b, $a);
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DHex.php50 $b = $chunk[1] >> 4;
54 (87 + $b + ((($b - 10) >> 8) & ~38)),
78 $b = $chunk[1] >> 4;
82 (55 + $b + ((($b - 10) >> 8) & ~6)),
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php354 $b = ord($x[$i]);
358 $r .= chr((($b * 0x0202020202) & 0x010884422010) % 1023);
362 $p1 = ($b * 0x0802) & 0x22110;
363 $p2 = ($b * 0x8020) & 0x88440;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DChaCha20.php277 * @param int $b
281 protected static function quarterRound(&$a, &$b, &$c, &$d) argument
287 $a+= $b; $d = self::leftRotate($d ^ $a, 16);
288 $c+= $d; $b = self::leftRotate($b ^ $c, 12);
289 $a+= $b; $d = self::leftRotate($d ^ $a, 8);
290 $c+= $d; $b = self::leftRotate($b ^ $c, 7);
H A DHash.php451 $b = $this->blockSize >> 3;
452 $this->ipad = str_repeat(chr(0x36), $b);
453 $this->opad = str_repeat(chr(0x5C), $b);
557 $c = self::L3Hash($L3Key1_i, $L3Key2_i, $b);
862 $key = str_pad($this->computedKey, $b, chr(0));
1406 $b = clone $hash[1];
1424 $a->bitwise_and($b),
1426 $b->bitwise_and($c)
1454 $c = clone $b;
1455 $b = clone $a;
[all …]
H A DSalsa20.php428 * @param int $b
432 protected static function quarterRound(&$a, &$b, &$c, &$d) argument
434 $b ^= self::leftRotate($a + $d, 7);
435 $c ^= self::leftRotate($b + $a, 9);
436 $d ^= self::leftRotate($c + $b, 13);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1101 $b = '';
1102 while (strlen($b) < $blockLength) {
1103 $b .= $ai;
1105 $b = substr($b, 0, $blockLength);
1106 $b = new BigInteger($b, 256);
1112 $temp = $temp->add($b);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBinary.php58 protected $b; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Binary
103 * @param string $b
111 $this->b = $this->factory->newInteger(pack('H*', $b));
190 $b = $x2->multiply($o1);
194 $e = $x1->add($b);
213 $e = $a->add($b);
252 $b = $a->multiply($a);
255 $x3 = $b->add($this->b);
266 $x3 = $b->add($this->b->multiply($d->multiply($d)));
268 $p1 = $b->multiply($z3);
[all …]
H A DKoblitzPrime.php197 $b = $y1->multiply($y1);
198 $c = $b->multiply($b);
199 $d = $x1->add($b);
245 $rhs = $temp->add($this->b);
264 $b = clone $zero;
288 $temp = $b;
289 $b = $d;
290 $d = $temp->subtract($b->multiply($q));
306 $lhs = $v->multiply($v)->add($b->multiply($b));
H A DMontgomery.php192 $b = $x2->subtract($z2);
193 $bb = $b->multiply($b);
198 $cb = $c->multiply($b);
230 $b = $d->toBits();
231 $b = str_pad($b, 256, '0', STR_PAD_LEFT);
232 for ($i = 0; $i < strlen($b); $i++) {
233 $b_i = (int) $b[$i];
H A DPrime.php60 protected $b; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Prime
142 $this->b = $this->factory->newInteger($b);
462 $b = $temp->squareRoot();
463 if (!$b) {
466 $bn = $b->isOdd();
467 $yp = $ypn == $bn ? $b : $b->negate();
514 return $this->b;
546 $b = $i;
549 $naf[$b] = $scalars[$b]->getNAF($wndWidth[$b]);
558 $points[$b] // 7
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd25519.php267 $b = $y1->multiply($y1);
269 $h = $a->add($b);
272 $g = $a->subtract($b);
318 $b = $y1->add($x1)->multiply($y2->add($x2));
321 $e = $b->subtract($a);
324 $h = $b->add($a);
H A DEd448.php206 $b = $x1->add($y1);
207 $b = $b->multiply($b);
214 $x3 = $b->subtract($e)->multiply($j);
256 $b = $a->multiply($a);
260 $f = $b->subtract($e);
261 $g = $b->add($e);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php506 $b = ltrim($curve->getB()->toBytes(), "\0");
507 if (!strlen($b)) {
508 $b = "\0";
518 'b' => $b
H A DXML.php259 $b = self::query($xpath, 'curve/b', 'B coefficient is not present');
269 new BigInteger($b, 256)
310 $b = self::query($xpath, 'curveparamstype/b', 'B coefficient is not present', false);
323 $b = str_replace(["\r", "\n", ' ', "\t"], '', $b);
326 new BigInteger($b)
442 $b = $curve->getB();
451 '<' . $pre . 'B>' . $b . '</' . $pre . 'B>' . "\r\n" .
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php269 $b = '0';
284 $temp = $b;
285 $b = $d;
286 $d = bcsub($temp, bcmul($b, $q, 0), 0);
292 'y' => $this->normalize(new static($b))
H A DEngine.php1173 $b = clone $zero;
1188 $temp = $b;
1189 $b = $d;
1190 $d = $temp->subtract($b->multiply($q));
1196 'y' => $b
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php133 $b = $x->value;
135 $length = max(strlen($a), strlen($b));
138 $b = str_pad($b, $length, "\0", STR_PAD_LEFT);
140 return strcmp($a, $b);

12345678910>>...101