Lines Matching refs:central_pos
170 ZPOS64_T central_pos; /* position of the beginning of the central dir*/
504 ZPOS64_T central_pos;
537 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream);
538 if (central_pos!=CENTRALDIRINVALID)
546 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0)
599 central_pos = unz64local_SearchCentralDir(&us.z_filefunc,us.filestream);
600 if (central_pos==CENTRALDIRINVALID)
606 central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0)
652 if ((central_pos<us.offset_central_dir+us.size_central_dir) &&
662 us.byte_before_the_zipfile = central_pos -
664 us.central_pos = central_pos;
739 ZPOS64_T central_pos;
761 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc, us.filestream);
762 if (central_pos != CENTRALDIRINVALID) {
768 if (ZSEEK64(us.z_filefunc, us.filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0) {
830 central_pos = unz64local_SearchCentralDir(&us.z_filefunc, us.filestream);
831 if (central_pos == CENTRALDIRINVALID) {
837 if (ZSEEK64(us.z_filefunc, us.filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0) {
890 if ((central_pos < us.offset_central_dir + us.size_central_dir) && (err == UNZ_OK)) {
899 us.byte_before_the_zipfile = central_pos - (us.offset_central_dir + us.size_central_dir);
900 us.central_pos = central_pos;
2255 if (ZSEEK64(s->z_filefunc,s->filestream,s->central_pos+22,ZLIB_FILEFUNC_SEEK_SET)!=0)