Home
last modified time | relevance | path

Searched refs:central_pos (Results 1 – 2 of 2) sorted by relevance

/reactos/sdk/lib/3rdparty/zlib/contrib/minizip/
H A Dunzip.c177 ZPOS64_T central_pos; /* position of the beginning of the central dir*/ member
592 ZPOS64_T central_pos; in unzOpenInternal() local
627 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream); in unzOpenInternal()
628 if (central_pos) in unzOpenInternal()
636 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) in unzOpenInternal()
689 central_pos = unz64local_SearchCentralDir(&us.z_filefunc,us.filestream); in unzOpenInternal()
690 if (central_pos==0) in unzOpenInternal()
696 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) in unzOpenInternal()
742 if ((central_pos<us.offset_central_dir+us.size_central_dir) && in unzOpenInternal()
752 us.byte_before_the_zipfile = central_pos - in unzOpenInternal()
[all …]
H A Dzip.c649 ZPOS64_T central_pos; in LoadCentralDirectoryRecord() local
667 central_pos = zip64local_SearchCentralDir64(&pziinit->z_filefunc,pziinit->filestream); in LoadCentralDirectoryRecord()
668 if(central_pos > 0) in LoadCentralDirectoryRecord()
672 else if(central_pos == 0) in LoadCentralDirectoryRecord()
674 central_pos = zip64local_SearchCentralDir(&pziinit->z_filefunc,pziinit->filestream); in LoadCentralDirectoryRecord()
685 if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0) in LoadCentralDirectoryRecord()
739 if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0) in LoadCentralDirectoryRecord()
791 if ((central_pos<offset_central_dir+size_central_dir) && in LoadCentralDirectoryRecord()
811 byte_before_the_zipfile = central_pos - (offset_central_dir+size_central_dir); in LoadCentralDirectoryRecord()