Home
last modified time | relevance | path

Searched refs:unpack (Results 1 – 25 of 95) sorted by relevance

1234

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DWmf.php37 $a = unpack('stest', "\1\0");
42 $key = unpack('Lmagic', substr($data, 0, 4));
56 $recordInfo = unpack('Lsize/Sfunc', substr($data, $p, 6));
71 $wo = array_reverse(unpack('s2', $parms));
78 $we = array_reverse(unpack('s2', $parms));
82 $brush = unpack('sstyle/Cr/Cg/Cb/Ca/Shatch', $parms);
87 $pen = unpack('Sstyle/swidth/sdummy/Cr/Cg/Cb/Ca', $parms);
107 $polyFillMode = unpack('smode', $parms);
111 $idx = unpack('Sidx', $parms);
116 $idx = unpack('Sid
[all...]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.colors.inc.php195 $arrr = unpack("C",pack("H2",$matches[1]));
196 $arrg = unpack("C",pack("H2",$matches[2]));
197 $arrb = unpack("C",pack("H2",$matches[3]));
211 $arrr = unpack("C",pack("H2",$matches[1].$matches[1]));
212 $arrg = unpack("C",pack("H2",$matches[2].$matches[2]));
213 $arrb = unpack("C",pack("H2",$matches[3].$matches[3]));
H A Dot.class.php350 $unpacked = unpack("nformat/ncount/nstringOffset", $content);
625 $unpacked = unpack("nformat", $content);
735 $unpacked = unpack("nendCount", $content);
744 $unpacked = unpack("nstartCount", $content);
750 $unpacked = unpack("nidDelta", $content);
756 $unpacked = unpack("nidRangeOffset", $content);
762 $unpacked = unpack("nglyphId", $content);
790 $unpacked = unpack("nversion/nnumTables", $content);
807 $unpacked = unpack("Nversion/nnumGlyphs", $content);
878 $unpacked = unpack("nadvanceWidth/nlsb", $content);
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/
H A DDecoder.php73 list(, $ctrlByte) = unpack(
98 list(, $nextByte) = unpack(
195 list(, $double) = unpack('d', $this->maybeSwitchByteOrder($bits));
208 list(, $float) = unpack('f', $this->maybeSwitchByteOrder($bits));
231 list(, $int) = unpack('l', $this->maybeSwitchByteOrder($bytes));
259 list(, $pointer) = unpack('n', $packed);
264 list(, $pointer) = unpack('N', $packed);
272 list(, $pointer) = unpack('N', $packed);
276 // We cannot use unpack here as we might overflow on 32 bit
340 list(, $adjust) = unpack('
[all...]
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DBinaryReader.php80 return $char !== '' ? current(unpack("c", $char)) : null;
90 return $char !== '' ? current(unpack("C", $char)) : null;
100 return $int32 !== '' ? current(unpack($this->endianness == self::LITTLE_ENDIAN ? 'V' : 'N', $int32)) : null;
112 ? array_values(unpack("d*", $bin))
113 : array_reverse(unpack("d*", strrev($bin)));
/plugin/sphinxsearch-was/
H A Dsphinxapi.php221 list($hi, $lo) = array_values(unpack("N*N*", $v));
284 list($hi, $lo) = array_values(unpack("N*N*", $v));
580 list(, $v) = unpack("N*", fread($fp, 4));
623 list(, $wlen) = unpack("N*", substr($response, 0, 4));
934 list(, $t2) = unpack("L*", $t1); // int in machine order
1107 list(, $len) = unpack("N*", substr($response, $p, 4));
1127 list(, $len) = unpack("N*", substr($response, $p, 4));
1137 list(, $len) = unpack("N*", substr($response, $p, 4));
1150 list(, $id64) = unpack("N*", substr($response, $p, 4));
1166 list($doc, $weight) = array_values(unpack(
[all …]
/plugin/sphinxsearch/
H A Dsphinxapi.php228 list ( $hi, $lo ) = array_values ( unpack ( "N*N*", $v ) );
294 list ( $hi, $lo ) = array_values ( unpack ( "N*N*", $v ) );
609 list(,$v) = unpack ( "N*", fread ( $fp, 4 ) );
658 list(,$wlen) = unpack ( "N*", substr ( $response, 0, 4 ) );
970 list(,$t2) = unpack ( "L*", $t1 ); // int in machine order
1200 list ( $doc, $weight ) = array_values ( unpack ( "N*N*",
1228 list(,$fval) = unpack ( "f*", pack ( "L", $uval ) );
1365 list(,$len) = unpack ( "N*", substr ( $response, $pos, 4 ) );
1433 list(,$nwords) = unpack ( "N*", substr ( $response, $pos, 4 ) );
1545 list(,$updated) = unpack ( "N*", substr ( $response, 0, 4 ) );
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php121 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));
329 $digits = unpack('N*', $x);
334 $digits = unpack('J*', $x);
398 $temp = unpack('Nnum', $temp);
410 $temp = unpack('Nnum', str_pad(substr($var, 0, $remainder), 4, "\0", STR_PAD_LEFT));
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DHex.php48 $chunk = \unpack('C', Binary::safeSubstr($binString, $i, 1));
76 $chunk = \unpack('C', Binary::safeSubstr($binString, $i, 2));
117 $chunk = \unpack('C*', $encodedString);
H A DBase64.php77 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, 3));
91 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, $srcLen - $i));
163 $chunk = \unpack('C*', Binary::safeSubstr($encodedString, $i, 4));
180 $chunk = \unpack('C*', Binary::safeSubstr($encodedString, $i, $srcLen - $i));
H A DBase32.php233 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, 8));
264 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, $srcLen - $i));
401 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, 5));
420 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, $srcLen - $i));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php175 $length = current(unpack('N', $this->readBytes(4)));
273 $agent_data_bytes = current(unpack('N', $data));
289 $agent_reply_bytes = current(unpack('N', $this->readBytes(4)));
292 $agent_reply_data = current(unpack('a*', $agent_reply_data));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php375 $key = array_values(unpack('C*', $this->key));
392 list($l, $r) = array_values(unpack('N*', $data = $this->encryptBlock($data)));
398 list($l, $r) = array_values(unpack('N*', $data = $this->encryptBlock($data)));
421 $in = unpack('N*', $in);
454 $in = unpack('N*', $in);
H A DRC2.php380 $l = array_values(unpack('C*', $key));
462 list($r0, $r1, $r2, $r3) = array_values(unpack('v*', $in));
507 list($r0, $r1, $r2, $r3) = array_values(unpack('v*', $in));
555 $l = unpack('Ca/Cb/v*', $this->key);
H A DDES.php712 $t = unpack('Nl/Nr', $block);
724 $t = unpack('Nl/Nr', $block);
1233 $t = unpack('Nl/Nr', $key);
1243 $key = unpack('Nc/Nd', $key);
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/
H A DReader.php151 $rawAddress = unpack('C*', inet_pton($ipAddress));
215 list(, $node) = unpack('N', "\x00" . $bytes);
225 list(, $node) = unpack('N', \chr($middle) . substr($bytes, $index, 3));
230 list(, $node) = unpack('N', $bytes);
/plugin/dw2pdf/vendor/mpdf/qrcode/src/
H A DQrCode.php502 $this->matrixXArray = unpack('C*', fread($fp1, $this->byteCount));
503 $this->matrixYArray = unpack('C*', fread($fp1, $this->byteCount));
504 $this->maskArray = unpack('C*', fread($fp1, $this->byteCount));
505 $this->formatInformationX2 = unpack('C*', fread($fp1, 15));
506 $this->formatInformationY2 = unpack('C*', fread($fp1, 15));
508 $this->rsBlockOrder = unpack('C*', fread($fp1, 128));
568 $data[] = unpack('C*', $rst);
695 $this->final = unpack('C*', file_get_contents(__DIR__ . '/../data/modele' . $this->version . '.dat'));
/plugin/archiveupload/
H A Daction.php59 $event->data->addElement(form_makeCheckboxField('unpack', 0, $this->getLang('unpack')));
71 if(!isset($_REQUEST['unpack'])) return;
H A DREADME10 This forked version will only unpack zip files in Weatherwax.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/
H A Dphar-sample.phar117 $L = unpack('V', $a = (binary)fread($fp, 4));
215 $info = unpack('V', substr($m, 0, 4));
216 $l = unpack('V', substr($m, 10, 4));
218 $s = unpack('V', substr($m, 0, 4));
224 $len = unpack('V', substr($m, $start, 4));
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DPuTTY.php108 list(, $length) = unpack('N', Strings::shift($public, 4));
140 list(, $length) = unpack('N', Strings::shift($public, 4));
/plugin/combo/vendor/hidehalo/nanoid-php/src/
H A DGenerator.php11 return unpack('C*', \random_bytes($size));
/plugin/geophp/vendor/funiq/geophp/src/
H A DgeoPHP.php348 $bytes = unpack("c*", $bin);
363 $wkbType = current(unpack($bytes[1] == 1 ? 'V' : 'N', substr($bin, 1, 4)));
378 if ((current(unpack($bytes[2] == 49 ? 'V' : 'N', hex2bin(substr($bin, 2, 8)))) & Adapter\WKB::SRID_MASK) == Adapter\WKB::SRID_MASK) {
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Filter/
H A DAsciiHex.php44 $t = \unpack('H*', $data);
/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)));

1234