Home
last modified time | relevance | path

Searched refs:shift (Results 1 – 25 of 489) sorted by relevance

12345678910>>...20

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
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/diagramsnet/lib/js/diagramly/
DDistanceGuides.js82 var shift = 5 * scale;
251 dx = shift;
257 dy = shift;
322 hPoints.push(new mxPoint(newX + s1.width + shift, firstY));
323 hPoints.push(new mxPoint(s2.x - shift, firstY));
327 hPoints.push(new mxPoint(s1.x + s1.width + shift, firstY));
329 hPoints.push(new mxPoint(newX - shift, firstY));
333 hPoints.push(new mxPoint(s1.x + s1.width + shift, firstY));
334 hPoints.push(new mxPoint(s2.x - shift, firstY));
343 hPoints.push(new mxPoint(s1.x + s1.width + shift, firstY));
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
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/Crypt/EC/Formats/Keys/
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/Math/BigInteger/Engines/
DPHP.php576 for ($shift = 0; !($msb & static::MSB); ++$shift) {
579 $x->lshift($shift);
580 $y->lshift($shift);
671 $x->rshift($shift);
677 $y->rshift($shift);
854 * @param int $shift
857 public function bitwise_rightShift($shift) argument
864 $temp->rshift($shift);
874 * @param int $shift
877 public function bitwise_leftShift($shift) argument
[all …]
DPHP64.php87 $shift = 8 - $step;
88 $digit >>= $shift;
89 $shift = 32 - $shift;
90 $digit &= (1 << $shift) - 1;
92 $digit |= ($temp << $shift) & 0x7F000000;
DEngine.php505 * @param int $shift
508 protected static function base256_lshift(&$x, $shift) argument
510 if ($shift == 0) {
514 $num_bytes = $shift >> 3; // eg. floor($shift/8)
515 $shift &= 7; // eg. $shift % 8
519 $temp = ord($x[$i]) << $shift | $carry;
532 * @param int $shift
535 public function bitwise_leftRotate($shift) argument
555 if ($shift < 0) {
556 $shift += $precision;
[all …]
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;
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);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
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/asciidocjs/node_modules/source-map/lib/
Dbase64-vlq.js119 var shift = 0;
134 result = result + (digit << shift);
135 shift += VLQ_BASE_SHIFT;
/plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/lib/
Dbase64-vlq.js119 var shift = 0;
134 result = result + (digit << shift);
135 shift += VLQ_BASE_SHIFT;
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
Dfckblockquotecommand.js59 block = paragraphs.shift() ;
70 block = tmp.shift() ;
90 block = paragraphs.shift() ;
119 var node = moveOutNodes.shift() ;
146 var node = movedNodes.shift() ;
/plugin/asciidocjs/node_modules/jake/test/integration/
Dhelpers.js9 if ((_name = _names.shift())) {
21 var cmd = args.shift();
25 while ((arg = args.shift())) {
/plugin/gcalendar/inc/
Dgcal_main.php102 case "week" : $shift = date('w',$reference_date)-1;
103 if($shift==-1) $shift=6;
104 $start_date = strtotime( "-".$shift."days", $reference_date );
/plugin/asciidocjs/node_modules/y18n/build/lib/
Dindex.js18 const str = args.shift();
44 const singular = args.shift();
45 const plural = args.shift();
46 const quantity = args.shift();
123 _this.writeQueue.shift();
/plugin/codemirror/dist/modes/
Debnf.min.js1shift()}else if(b.peek()==="\\"){b.next();b.next()}else{b.match(/^.[^\\\"\']*/)}}return f.lhs?"pro…
/plugin/abc2/abc-libraries/abc2svg/
Dgrid3-1.js37 while(1){cl=cells.shift()
43 while(1){cell=cl.shift()
58 while(1){bl=bars.shift()
63 while(1){bar=bl.shift()
85 while(1){ln=txt.shift()
92 while(1){cl=ln.shift()
145 while(1){ln=t.shift()
154 while(1){cl=ln.shift()
/plugin/asciidocjs/node_modules/jake/lib/
Dapi.js136 let pattern = args.shift();
137 let source = args.shift();
143 while ((arg = args.shift())) {
337 errObj = new Error(msg.shift());
Djake.js179 type = args.shift();
184 name = args.shift();
186 prereqs = args.shift();
192 obj = args.shift();
200 while ((arg = args.shift())) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
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);
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dsourcemap.js54 var shift = 0;
57 value += (bits & 31) << shift;
59 shift += 5;
62 value = shift = 0;
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dchaining.js72 assert.deepEqual(instance.shift().value(), [2, 3]);
73 assert.deepEqual(instance.shift().value(), [3]);
74 assert.deepEqual(instance.shift().value(), [], '#397 Can create empty array');
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
DLexer.php208 $shift = false;
234 $shift = true;
250 if (null !== $this->_nsStack && false === $shift) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DOtl.php1312 $shift = 1;
1317 …$shift = $this->_applyGSUBsubtable($lu, $c, $ptr, $currGlyph, $currGID, ($subtable_offset - $this-…
1319 if ($shift) {
1324 if ($shift == 0) {
1325 $shift = 1;
1327 $ptr += $shift;
1355 $shift = 1;
1370 …$shift = $this->_applyGSUBsubtable($lu, $c, $ptr, $currGlyph, $currGID, ($subtable_offset - $this-…
1372 if ($shift) {
1378 if ($shift == 0) {
[all …]

12345678910>>...20