Lines Matching defs:len
687 $value = substr($header, 0, $set['len']);
688 $header = substr($header, $set['len']);
901 * @param int $len length of the uncompressed 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;
929 $header .= pack('V', $len); // uncompressed size
948 * @param int $len length of the uncompressed 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;
975 $header .= pack('V', $len); // uncompressed size
988 * @param int $len length of the uncompressed data
992 protected function makeCrcAndSize($crc, $len, $clen) {
995 $header .= pack('V', $len); // uncompressed size