Home
last modified time | relevance | path

Searched refs:shift (Results 26 – 50 of 363) sorted by path

12345678910>>...15

/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1shift","lastLineInParagraph","addImage","_minHeight","availableHeight","addQr","events","event","c…
/plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/
H A Dxlsx.js968 var root_name = Paths.shift();
997 var shift = 0x09;
1003 switch((shift = blob.read_shift(2))) {
1006 default: throw 'Sector Shift: Expected 9 or 12 saw ' + shift;
2501 var tokTo = toksTo.shift();
H A Dxlsx.min.js2shift();Paths.root=root_name;var find_path=make_find_path(FullPaths,Paths,FileIndex,files,root_nam…
4 …o=to.split("/");var reversed=[];while(toksTo.length!==0){var tokTo=toksTo.shift();if(tokTo==="..")…
H A Dxlsx.min.map1 …FullPaths","FullPathDir","read_directory","build_full_paths","root_name","shift","root","find_path…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php39 public static function shift(&$string, $index = 1) function in phpseclib3\\Common\\Functions\\Strings
115 $result[] = ord(self::shift($data));
118 $result[] = ord(self::shift($data)) != 0;
121 list(, $temp) = unpack('N', self::shift($data, 4));
131 extract(unpack('Nupper/Nlower', self::shift($data, 8)));
138 list(, $length) = unpack('N', self::shift($data, 4));
142 $temp = self::shift($data, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php83 $magic = Strings::shift($key, 15);
H A DPuTTY.php193 if (Strings::shift($key[0], strlen('PuTTY-User-Key-File-')) != 'PuTTY-User-Key-File-') {
196 …$version = (int) Strings::shift($key[0], 3); // should be either "2: " or "3: 0" prior to int cast…
215 extract(unpack('Nlength', Strings::shift($public, 4)));
216 $newtype = Strings::shift($public, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1384 $key = Strings::shift($buffer['ciphertext'], $block_size);
1486 $key = Strings::shift($buffer['xor'], $block_size);
1758 $key = Strings::shift($buffer['ciphertext'], $block_size);
1859 $key = Strings::shift($buffer['xor'], $block_size);
1995 $otp = Strings::shift($buffer['ciphertext'], $block_size);
2017 $ciphertext = $plaintext ^ Strings::shift($buffer['ciphertext'], strlen($plaintext));
2090 $ciphertext .= Strings::shift($xor, $overflow) ^ substr($plaintext, -$overflow);
3386 $r = Strings::shift($s, 16);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php446 $y = ord(Strings::shift($m));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php303 if (($val = Strings::shift($str)) != "\0") {
H A DOpenSSH.php86 if (Strings::shift($parsed['publicKey'], 4) != "\0\0\0\x20") {
H A DPuTTY.php78 if (Strings::shift($private, 4) != "\0\0\0\x20") {
108 list(, $length) = unpack('N', Strings::shift($public, 4));
109 Strings::shift($public, $length);
140 list(, $length) = unpack('N', Strings::shift($public, 4));
141 Strings::shift($public, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php1145 * @param int $shift
1147 private static function rotateLeft32($x, $shift) argument
1149 if ($shift < 32) {
1152 $shift -= 32;
1157 ($hi << $shift) | (($lo >> (32 - $shift)) & (1 << $shift) - 1),
1158 ($lo << $shift) | (($hi >> (32 - $shift)) & (1 << $shift) - 1)
1314 * @param int $shift
1316 private static function rotateLeft64($x, $shift) argument
1318 return ($x << $shift) | (($x >> (64 - $shift)) & ((1 << $shift) - 1));
1377 $temp = new BigInteger(Strings::shift($chunk, 8), 256);
H A DRijndael.php996 return Strings::shift($this->newtag, strlen($plaintext));
H A DSalsa20.php347 $ciphertext = $text ^ Strings::shift($buffer['ciphertext'], strlen($text));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DMSBLOB.php104 extract(unpack('atype/aversion/vreserved/Valgo', Strings::shift($key, 8)));
137 extract(unpack('Vmagic/Vbitlen/a4pubexp', Strings::shift($key, 12)));
160 $components['modulus'] = new BigInteger(strrev(Strings::shift($key, $bitlen / 8)), 256);
169 … $components['primes'] = [1 => new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256)];
171 $components['primes'][] = new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256);
173 … $components['exponents'] = [1 => new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256)];
175 … $components['exponents'][] = new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256);
177 …$components['coefficients'] = [2 => new BigInteger(strrev(Strings::shift($key, $bitlen / 16)), 256…
182 … $components['privateExponent'] = new BigInteger(strrev(Strings::shift($key, $bitlen / 8)), 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php166 if (Strings::shift($em, 2) != "\0\1") {
171 if (Strings::shift($em) != "\0") {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php836 $length = ord(Strings::shift($string));
839 $temp = Strings::shift($string, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php565 * @param int $shift
568 public function bitwise_rightShift($shift) argument
570 return new static($this->value->bitwise_rightShift($shift));
578 * @param int $shift
581 public function bitwise_leftShift($shift) argument
583 return new static($this->value->bitwise_leftShift($shift));
591 * @param int $shift
594 public function bitwise_leftRotate($shift) argument
596 return new static($this->value->bitwise_leftRotate($shift));
604 * @param int $shift
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php364 * @param int $shift
367 public function bitwise_rightShift($shift) argument
370 $temp->value = bcdiv($this->value, bcpow('2', $shift, 0), 0);
380 * @param int $shift
383 public function bitwise_leftShift($shift) argument
386 $temp->value = bcmul($this->value, bcpow('2', $shift, 0), 0);
H A DEngine.php505 * @param int $shift
510 if ($shift == 0) {
515 $shift &= 7; // eg. $shift % 8
532 * @param int $shift
535 public function bitwise_leftRotate($shift) argument
555 if ($shift < 0) {
556 $shift += $precision;
558 $shift %= $precision;
560 if (!$shift) {
576 * @param int $shift
[all …]
H A DGMP.php390 * @param int $shift
393 public function bitwise_rightShift($shift) argument
399 $temp->value = $this->value >> $shift;
409 * @param int $shift
412 public function bitwise_leftShift($shift) argument
415 $temp->value = $this->value << $shift;
H A DPHP.php576 for ($shift = 0; !($msb & static::MSB); ++$shift) {
579 $x->lshift($shift);
580 $y->lshift($shift);
671 $x->rshift($shift);
854 * @param int $shift
874 * @param int $shift
916 * @param int $shift
920 if ($shift == 0) {
926 $shift = 1 << $shift;
950 * @param int $shift
[all …]
H A DPHP64.php87 $shift = 8 - $step;
88 $digit >>= $shift;
89 $shift = 32 - $shift;
90 $digit &= (1 << $shift) - 1;
92 $digit |= ($temp << $shift) & 0x7F000000;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php380 …$shift = !$d->equals(static::$zero[static::class]) && $d->bitwise_and($mask)->equals(static::$zero…
381 $d = $d->bitwise_rightShift($shift);
382 while (--$shift > 0) {

12345678910>>...15