Searched refs:clen (Results 1 – 1 of 1) sorted by relevance
/dokuwiki/vendor/splitbrain/php-archive/src/ |
H A D | Zip.php | 902 * @param int $clen length of the compressed data 907 protected function makeCentralFileRecord($offset, $ts, $crc, $len, $clen, $name, $comp = null) argument 909 if(is_null($comp)) $comp = $len != $clen; 928 $header .= pack('V', $clen); // compressed size 949 * @param int $clen length of the compressed data 954 protected function makeLocalFileHeader($ts, $crc, $len, $clen, $name, $comp = null) argument 956 if(is_null($comp)) $comp = $len != $clen; 974 $header .= pack('V', $clen); // compressed size 989 * @param int $clen length of the compressed data 992 protected function makeCrcAndSize($crc, $len, $clen) { argument [all …]
|