Lines Matching defs:comp
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;
910 $comp = $comp ? 8 : 0;
919 $header .= pack('v', $comp); // compression method - deflate|none
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;
957 $comp = $comp ? 8 : 0;
965 $header .= pack('v', $comp); // compression method - deflate|none