Home
last modified time | relevance | path

Searched refs:fread (Results 51 – 75 of 229) sorted by last modified time

12345678910

/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/
H A DCHANGELOG.md113 * In the pure PHP reader, a string length test after `fread()` was replaced
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/
H A DUtil.php13 $value = fread($stream, $numberOfBytes);
/plugin/diagramsnet/lib/js/diagramly/
H A DEditor.js3656 function fread(d, count) function
3667 var bytes = fread(d, 4);
3680 if (fread(f,8) != String.fromCharCode(137) + 'PNG' + String.fromCharCode(13, 10, 26, 10))
3691 fread(f,4);
3693 if (fread(f,4) != 'IHDR')
3703 fread(f, 17);
3709 var chunk = fread(f,4);
3738 fread(f,n);
3739 fread(f,4);
H A DEditorUi.js289 function fread(d, count) function
300 var bytes = fread(d, 4);
307 if (fread(f,8) != String.fromCharCode(137) + 'PNG' + String.fromCharCode(13, 10, 26, 10))
318 fread(f,4);
320 if (fread(f,4) != 'IHDR')
330 fread(f, 17);
335 var type = fread(f,4);
345 value = fread(f,n);
346 fread(f,4);
/plugin/mediathumbnails/
H A Dthumb_engines.php146 $thumbnaildata .= fread($fp, 8192);
/plugin/webdav/vendor/sabre/http/lib/
H A DSapi.php84 fwrite($output, fread($body, 8192));
/plugin/webdav/core/
H A DUtils.php28 while (($buf = fread($stream, 8192)) != '') {
58 while (($buf = fread($stream, 8192)) != '') {
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php181 $consumed += strlen(fread($body, min($start - $consumed, $consumeBlock)));
489 $firstByte = fread($body, 1);
/plugin/elwikiupgrade/
H A DHTTPClient.php643 $bytes = fread($socket, $to_read);
H A DVerboseTarLib.class.php267 $data = fread($fp, 512);
391 return @fread($this->fh, $length);
/plugin/loglog/helper/
H A Dlogging.php101 $tmp = fread($fp, $read);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio-video.ts.php30 $TSheader = $this->fread(19);
H A Dmodule.audio.aa.php30 $AAheader = $this->fread(8);
H A Dmodule.graphic.pcd.php37 $PCDflags = $this->fread(1);
75 $PCD_data_Y1 = $this->fread($PCD_width);
76 $PCD_data_Y2 = $this->fread($PCD_width);
77 $PCD_data_Cb = $this->fread(intval(round($PCD_width / 2)));
78 $PCD_data_Cr = $this->fread(intval(round($PCD_width / 2)));
H A Dwrite.id3v1.php69 if (fread($fp_source, 3) == 'TAG') {
137 if (fread($fp_source, 3) == 'TAG') {
H A Dgetid3.lib.php775 $buffer = fread($fp, min($size, getID3::FREAD_BUFFER_SIZE));
804 …while (($byteslefttowrite > 0) && ($buffer = fread($fp_src, min($byteslefttowrite, getID3::FREAD_B…
H A Dgetid3.php564 $header = fread($this->fp, 10);
575 $formattest = fread($this->fp, 32774);
2039 protected function fread($bytes) { function in getid3_handler
2063 $part = fread($this->getid3->fp, $bytes);
2233 …$attachment = $this->fread($length); // get whole data in one pass, till it is anyway stored in me…
2258 …if (($buffer = $this->fread(min($buffersize, $bytesleft))) === false || ($byteswritten = fwrite($f…
H A Dmodule.audio-video.bink.php31 $fileTypeID = $this->fread(3);
53 $fileData = 'BIK'.$this->fread(13);
H A Dmodule.audio-video.flv.php102 $FLVheader = $this->fread(5);
118 $FrameSizeDataLength = getid3_lib::BigEndian2Int($this->fread(4));
132 $ThisTagHeader = $this->fread(16);
163 $FLVvideoHeader = $this->fread(11);
183 $sps = $this->fread($spsSize);
276 $datachunk = $this->fread($DataLength);
H A Dmodule.audio-video.riff.php63 $RIFFheader = $this->fread(12);
114 $nextRIFFheader = $this->fread(12);
154 $DIVXTAG = $nextRIFFheader.$this->fread(128 - 12);
471 $RIFFdata = $this->fread(44);
1198 $WEBP_VP8_header = $this->fread(10);
1221 $WEBP_VP8L_header = $this->fread(10);
1423 $AMVheader = $this->fread(284);
1522 $chunknamesize = $this->fread(8);
1542 $listname = $this->fread(4);
1549 $AudioChunkHeader = $this->fread(12);
[all …]
H A Dmodule.audio.aac.php29 if ($this->fread(4) == 'ADIF') {
47 $AACheader = $this->fread(1024);
332 $substring = $this->fread(9); // header is 7 bytes (or 9 if CRC is present)
/plugin/jplayer/vendor/symfony/process/Pipes/
H A DAbstractPipes.php141 $data = fread($input, self::CHUNK_SIZE);
/plugin/jplayer/vendor/symfony/process/Tests/
H A DPipeStdinInStdoutStdErrStreamSelect.php60 $str = fread(\STDIN, 32768);
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.joinmp3.php99 fwrite($fp_output, fread($fp_source, min(32768, $end_offset_bytes - ftell($fp_source))));
H A Ddemo.zip.php48 $compressedFileData .= fread($getid3->fp, 32768);

12345678910