Lines Matching defs:cur_dst_file_ofs
6636 mz_uint64 cur_src_file_ofs, cur_dst_file_ofs;
6666 cur_dst_file_ofs = pZip->m_archive_size;
6676 if (!mz_zip_writer_write_zeros(pZip, cur_dst_file_ofs,
6679 cur_dst_file_ofs += num_alignment_padding_bytes;
6680 local_dir_header_ofs = cur_dst_file_ofs;
6686 if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pLocal_header,
6690 cur_dst_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE;
6713 if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pBuf, n) != n) {
6717 cur_dst_file_ofs += n;
6732 if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pBuf, n) != n) {
6738 cur_dst_file_ofs += n;
6743 if (cur_dst_file_ofs > 0xFFFFFFFF) return MZ_FALSE;
6774 pZip->m_archive_size = cur_dst_file_ofs;