Lines Matching defs:clen
902 * @param int $clen length of the compressed data
904 * @param boolean|null $comp if compression is used, if null it's determined from $len != $clen
907 protected function makeCentralFileRecord($offset, $ts, $crc, $len, $clen, $name, $comp = null)
909 if(is_null($comp)) $comp = $len != $clen;
928 $header .= pack('V', $clen); // compressed size
949 * @param int $clen length of the compressed data
951 * @param boolean|null $comp if compression is used, if null it's determined from $len != $clen
954 protected function makeLocalFileHeader($ts, $crc, $len, $clen, $name, $comp = null)
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) {
994 $header .= pack('V', $clen); // compressed size