Home
last modified time | relevance | path

Searched refs:size (Results 51 – 55 of 55) sorted by path

123

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php19 protected $size = 0; variable in splitbrain\\PHPArchive\\FileInfo
100 return $this->size;
104 * @param int $size
106 public function setSize($size) argument
108 $this->size = $size;
H A DTar.php121 $this->skipbytes(ceil($header['size'] / 512) * 512);
181 $this->skipbytes(ceil($header['size'] / 512) * 512);
199 $size = floor($header['size'] / 512);
200 for ($i = 0; $i < $size; $i++) {
203 if (($header['size'] % 512) != 0) {
204 fwrite($fp, $this->readbytes(512), $header['size'] % 512);
211 $this->skipbytes(ceil($header['size'] / 512) * 512); // the size is usually 0 for directories
308 throw new ArchiveCorruptedException("The size o
530 writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') global() argument
[all...]
H A DZip.php209 $size = $header['compressed_size'];
210 while ($size != 0) {
211 $read_size = ($size < 2048 ? $size : 2048);
215 $size -= $read_size;
220 $binary_data = pack('VV', $header['crc'], $header['size']);
239 $size = $header['size'];
240 while ($size != 0) {
241 $read_size = ($size < 204
[all...]
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md9 jsstrip is a open-source library to remove whitespace and comments from a javascript file. You might want to do this to optimize size and performance, or to make a file harder to read. It typically makes 30-40% savings in file size.
/dokuwiki/vendor/splitbrain/slika/src/
H A DImageMagickAdapter.php71 $size = $width . 'x' . $height;
74 $this->args[] = $size;
91 $size = $width . 'x' . $height;
94 $this->args[] = "$size^";
98 $this->args[] = "$size+0+0";

123