Home
last modified time | relevance | path

Searched refs:bytes (Results 301 – 319 of 319) sorted by path

1...<<111213

/plugin/swiftmail/Swift/Message/
H A DEncoder.php160 while (false !== $bytes = $file->read(8190))
164 $next = chunk_split($this->rawBase64Encode($bytes), $chunk, $le);
271 while (false !== $bytes = $file->readln())
273 $next = $this->rawQPEncode($bytes, true);
303 while (false !== $bytes = $file->read(8192)) $ret .= $bytes;
331 while (false !== $bytes = $file->read(8192)) $ret .= $bytes;
H A DMime.php293 while (false !== $bytes = $part_stream->read()) $this->cache->write("append", $bytes);
316 while (false !== $bytes = $qp_os->read())
317 $this->cache->write("body", $bytes);
328 while (false !== $bytes = $b64_os->read())
329 $this->cache->write("body", $bytes);
340 while (false !== $bytes = $data->read(8192))
341 $this->cache->write("body", $bytes);
352 while (false !== $bytes = $os->read())
353 $this->cache->write("body", $bytes);
364 while (false !== $bytes = $os->read())
[all …]
/plugin/swiftmail/Swift/Plugin/
H A DBandwidthMonitor.php43 $bytes = strlen($e->getString()) + $add;
44 $this->addBytesOut($bytes);
52 $bytes = strlen($e->getString()) + 2;
53 $this->addBytesIn($bytes);
/plugin/tablelayout/
H A Dyarn.lock175 bytes "2.2.0"
228 bytes@2.2.0:
230 …resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.2.0.tgz#fd35464a403f6f9117c2de3609ecff9cae0…
232 bytes@2.4.0:
234 …resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6…
1968 bytes "2.4.0"
/plugin/tuxquote/
H A Dquotes.txt3171 …ive instruction to the CPU, which processes billions of tiny facts called bytes, and within a frac…
4126 …enough RAMs, poor quality interface and too few bytes to go around? Have I explained yet about the…
/plugin/upgrade/HTTP/
H A DHTTPClient.php613 * Reads up to a given number of bytes or throws an exception if the
617 * @param int $nbytes Number of bytes to read
634 sprintf('Timeout while reading %s after %d bytes (%.3fs)', $message,
653 $bytes = fread($socket, $to_read);
654 if($bytes === false)
656 $r_data .= $bytes;
657 $to_read -= strlen($bytes);
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php354 * consists of two 512 blocks of zero bytes"
436 * @param int $length bytes to read
455 * @return int number of bytes written
480 * @param int $bytes seek to this position
482 protected function skipbytes($bytes) argument
485 @gzseek($this->fh, $bytes, SEEK_CUR);
489 while($bytes) {
490 $toread = min(8192, $bytes);
492 $bytes -= $toread;
495 @fseek($this->fh, $bytes, SEEK_CU
[all...]
H A DZip.php553 $bytes = 0x00000000;
557 $bytes = (($bytes << 8) & 0xFFFFFFFF) | ord($byte);
558 if ($bytes == 0x504b0506) {
788 * @return int number of bytes written
810 * @return int number of bytes written
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md1944 number of bytes' for deletion. This should reduce load due to less crawling
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php110 '{DAV:}quota-available-bytes',
111 '{DAV:}quota-used-bytes',
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md25 * #56: `getBodyAsString` now returns at most as many bytes as the contents of
/plugin/webdav/vendor/sabre/vobject/lib/
H A DCli.php604 … $this->cWrite('default', 'embedded binary stripped. ('.strlen($property->getValue()).' bytes)');
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DCli.php632 …this->cWrite('default', 'embedded binary stripped. (' . strlen($property->getValue()) . ' bytes)');
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/
H A Dclass_upload.asp339 'Keep strBuffer at 1k bytes maximum
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf_io.cfm215 <cfargument name="bytes" required="true" type="Numeric">
247 if ( char eq -1 or counter eq ARGUMENTS.bytes)
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js45006 var res = bytes[0 + off] << 24 | bytes[1 + off] << 16 | bytes[2 + off] << 8 | bytes[3 + off];
45903 bytes = utils.toArray(bytes, enc);
45906 …if ((bytes[0] === 0x04 || bytes[0] === 0x06 || bytes[0] === 0x07) && bytes.length - 1 === 2 * len)…
45907 …if (bytes[0] === 0x06) assert(bytes[bytes.length - 1] % 2 === 0);else if (bytes[0] === 0x07) asser…
45910 } else if ((bytes[0] === 0x02 || bytes[0] === 0x03) && bytes.length - 1 === len) {
48167 bytes = utils.parseBytes(bytes);
48451 return typeof bytes === 'string' ? utils.toArray(bytes, 'hex') : bytes;
82889 bytes = Array.prototype.slice.call(bytes);
83189 bytes = hashfunc(bytes);
83190 bytes[6] = bytes[6] & 0x0f | version;
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js428 var decToHex = function(dec, bytes) { argument
430 for (i = 0; i < bytes; i++) {
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs1539 /* read four bytes from buf and interpret as a DOS date */
2663 /* 2 bytes sz, 2 bytes bit inverse */
2666 /* push sz bytes */
4090 /* replace null bytes with _ when relevant */
6019 var bytes = blob.slice(blob.l,blob.l+size);
6022 return bytes;
6460 var bytes = blob.read_shift(4);
7744 if(ft != 0x02) { // 20 reserved bytes
8664 if(bytes[0] == 0xEF && bytes[1] == 0xBB && bytes[2] == 0xBF) str = utf8read(str.slice(3));
25697 var str = "", bytes = firstbyte(data, o);
[all …]
/plugin/yuriigantt/
H A DREADME.md86 **NOTE! If you have file with size more than 10k bytes, please consider to use other drivers!**

1...<<111213