Lines Matching defs:m_archive_size
1339 mz_uint64 m_archive_size;
4938 pZip->m_archive_size = 0;
5050 if (pZip->m_archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE)
5055 MZ_MAX((mz_int64)pZip->m_archive_size - (mz_int64)sizeof(buf_u32), 0);
5058 n = (int)MZ_MIN(sizeof(buf_u32), pZip->m_archive_size - cur_file_ofs);
5067 if ((!cur_file_ofs) || ((pZip->m_archive_size - cur_file_ofs) >=
5095 if ((cdir_ofs + (mz_uint64)cdir_size) > pZip->m_archive_size) return MZ_FALSE;
5148 MZ_ZIP_LOCAL_DIR_HEADER_SIZE + comp_size) > pZip->m_archive_size)
5171 pZip->m_archive_size = size;
5182 size_t s = (file_ofs >= pZip->m_archive_size)
5184 : (size_t)MZ_MIN(pZip->m_archive_size - file_ofs, n);
5192 pZip->m_archive_size = size;
5237 pZip->m_archive_size = file_size;
5520 if ((cur_file_ofs + file_stat.m_comp_size) > pZip->m_archive_size)
5722 if ((cur_file_ofs + file_stat.m_comp_size) > pZip->m_archive_size)
5959 pZip->m_archive_size = existing_size;
6071 ((pZip->m_archive_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE +
6108 pZip->m_archive_size = pZip->m_central_directory_file_ofs;
6246 n = (mz_uint32)(pZip->m_archive_size & (pZip->m_file_offset_alignment - 1));
6273 mz_uint64 local_dir_header_ofs = pZip->m_archive_size,
6274 cur_archive_file_ofs = pZip->m_archive_size, comp_size = 0;
6316 ((pZip->m_archive_size + num_alignment_padding_bytes +
6432 pZip->m_archive_size = cur_archive_file_ofs;
6444 mz_uint64 local_dir_header_ofs = pZip->m_archive_size,
6445 cur_archive_file_ofs = pZip->m_archive_size, uncomp_size = 0,
6469 ((pZip->m_archive_size + num_alignment_padding_bytes +
6625 pZip->m_archive_size = cur_archive_file_ofs;
6659 ((pZip->m_archive_size + num_alignment_padding_bytes +
6666 cur_dst_file_ofs = pZip->m_archive_size;
6774 pZip->m_archive_size = cur_dst_file_ofs;
6791 ((pZip->m_archive_size + pState->m_central_dir.m_size +
6799 central_dir_ofs = pZip->m_archive_size;
6806 pZip->m_archive_size += central_dir_size;
6819 if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr,
6826 pZip->m_archive_size += sizeof(hdr);