Lines Matching refs:ZPOS64_T
123 ZPOS64_T offset_curfile;/* relative offset of local header 8 bytes */
138 ZPOS64_T pos_in_zipfile; /* position in byte on the zipfile, for fseek*/
141 ZPOS64_T offset_local_extrafield;/* offset of the local extra field */
143 ZPOS64_T pos_local_extrafield; /* position in the local extra field in read*/
144 ZPOS64_T total_out_64;
148 ZPOS64_T rest_read_compressed; /* number of byte to be decompressed */
149 ZPOS64_T rest_read_uncompressed;/*number of byte to be obtained after decomp*/
153 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
166 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
167 ZPOS64_T num_file; /* number of the current file in the zipfile*/
168 ZPOS64_T pos_in_central_dir; /* pos of the current file in the central dir*/
169 ZPOS64_T current_file_ok; /* flag about the usability of the current file*/
170 ZPOS64_T central_pos; /* position of the beginning of the central dir*/
172 ZPOS64_T size_central_dir; /* size of the central directory */
173 ZPOS64_T offset_central_dir; /* offset of start of central directory with
245 ZPOS64_T *pX)
251 *pX = c[0] | ((ZPOS64_T)c[1] << 8) | ((ZPOS64_T)c[2] << 16) | ((ZPOS64_T)c[3] << 24)
252 | ((ZPOS64_T)c[4] << 32) | ((ZPOS64_T)c[5] << 40) | ((ZPOS64_T)c[6] << 48) | ((ZPOS64_T)c[7] << 56);
324 #define CENTRALDIRINVALID ((ZPOS64_T)(-1))
331 local ZPOS64_T unz64local_SearchCentralDir(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream)
334 ZPOS64_T uSizeFile;
335 ZPOS64_T uBackRead;
336 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
337 ZPOS64_T uPosFound=CENTRALDIRINVALID;
356 ZPOS64_T uReadPos ;
392 local ZPOS64_T unz64local_SearchCentralDir64(const zlib_filefunc64_32_def* pzlib_filefunc_def,
396 ZPOS64_T uSizeFile;
397 ZPOS64_T uBackRead;
398 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
399 ZPOS64_T uPosFound=CENTRALDIRINVALID;
401 ZPOS64_T relativeOffset;
420 ZPOS64_T uReadPos;
504 ZPOS64_T central_pos;
511 ZPOS64_T number_entry_CD; /* total number of entries in
541 ZPOS64_T uL64;
739 ZPOS64_T central_pos;
743 ZPOS64_T number_entry_CD;
764 ZPOS64_T uL64;
959 local void unz64local_DosDateToTmuDate(ZPOS64_T ulDosDate, tm_unz* ptm)
961 ZPOS64_T uDate;
962 uDate = (ZPOS64_T)(ulDosDate>>16);
1084 ZPOS64_T uSizeRead ;
1092 if (ZSEEK64(s->z_filefunc, s->filestream,(ZPOS64_T)lSeek,ZLIB_FILEFUNC_SEEK_CUR)==0)
1117 if (ZSEEK64(s->z_filefunc, s->filestream,(ZPOS64_T)lSeek,ZLIB_FILEFUNC_SEEK_CUR)==0)
1187 if (ZSEEK64(s->z_filefunc, s->filestream,(ZPOS64_T)lSeek,ZLIB_FILEFUNC_SEEK_CUR)==0)
1331 ZPOS64_T num_fileSaved;
1332 ZPOS64_T pos_in_central_dirSaved;
1448 ZPOS64_T num_fileSaved;
1449 ZPOS64_T pos_in_central_dirSaved;
1510 ZPOS64_T pos_in_zip_directory; // offset in file
1511 ZPOS64_T num_of_file; // # of file
1585 ZPOS64_T * poffset_local_extrafield,
1677 ZPOS64_T offset_local_extrafield; /* offset of the local extra field */
1855 extern ZPOS64_T ZEXPORT unzGetCurrentFileZStreamPos64(unzFile file) {
2035 ZPOS64_T uTotalOutBefore,uTotalOutAfter;
2037 ZPOS64_T uOutThis;
2101 extern ZPOS64_T ZEXPORT unztell64(unzFile file) {
2106 return (ZPOS64_T)-1;
2111 return (ZPOS64_T)-1;
2155 ZPOS64_T size_to_read;
2271 extern ZPOS64_T ZEXPORT unzGetOffset64(unzFile file) {
2286 ZPOS64_T offset64;
2294 extern int ZEXPORT unzSetOffset64(unzFile file, ZPOS64_T pos) {