Home
last modified time | relevance | path

Searched refs:ZPOS64_T (Results 1 – 9 of 9) sorted by relevance

/external/zlib/src/contrib/minizip/
Dzip.c77 #define MAKEULONG64(a, b) ((ZPOS64_T)(((unsigned long)(a)) | ((ZPOS64_T)((unsigned long)(b))) << 32…
140 ZPOS64_T pos_local_header; /* offset of the local header of the file
155 ZPOS64_T pos_zip64extrainfo;
156 ZPOS64_T totalCompressedData;
157 ZPOS64_T totalUncompressedData;
173 ZPOS64_T begin_pos; /* position of the beginning of the zipfile */
174 ZPOS64_T add_position_when_writing_offset;
175 ZPOS64_T number_entry;
286 … OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte));
287 …Value (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte) in zip64local_putValue()
[all …]
Dunzip.c128 ZPOS64_T offset_curfile;/* relative offset of local header 8 bytes */
143 ZPOS64_T pos_in_zipfile; /* position in byte on the zipfile, for fseek*/
146 ZPOS64_T offset_local_extrafield;/* offset of the local extra field */
148 ZPOS64_T pos_local_extrafield; /* position in the local extra field in read*/
149 ZPOS64_T total_out_64;
153 ZPOS64_T rest_read_compressed; /* number of byte to be decompressed */
154 ZPOS64_T rest_read_uncompressed;/*number of byte to be obtained after decomp*/
158 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
171 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
172 ZPOS64_T num_file; /* number of the current file in the zipfile*/
[all …]
Dunzip.h98 ZPOS64_T number_entry; /* total number of entries in
119 ZPOS64_T compressed_size; /* compressed size 8 bytes */
120 ZPOS64_T uncompressed_size; /* uncompressed size 8 bytes */
274 ZPOS64_T pos_in_zip_directory; /* offset in zip file directory */
275 ZPOS64_T num_of_file; /* # of file */
321 extern ZPOS64_T ZEXPORT unzGetCurrentFileZStreamPos64 OF((unzFile file));
395 extern ZPOS64_T ZEXPORT unztell64 OF((unzFile file));
424 extern ZPOS64_T ZEXPORT unzGetOffset64 (unzFile file);
428 extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos);
Dioapi.h87 typedef 64BIT_INT_CUSTOM_TYPE ZPOS64_T; typedef
91 typedef uint64_t ZPOS64_T; typedef
98 typedef unsigned __int64 ZPOS64_T; typedef
100 typedef unsigned long long int ZPOS64_T; typedef
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream)); typedef
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset…
195 long call_zseek64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset…
196 ZPOS64_T call_ztell64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream));
Dioapi.c41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int … in call_zseek64()
55 ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream) in call_ztell64()
63 return (ZPOS64_T)-1; in call_ztell64()
90 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream));
91 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int o…
154 static ZPOS64_T ZCALLBACK ftell64_file_func (voidpf opaque, voidpf stream) in ftell64_file_func()
156 ZPOS64_T ret; in ftell64_file_func()
184 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) in fseek64_file_func()
Diowin32.c39 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream));
40 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int or…
284 ZPOS64_T ZCALLBACK win32_tell64_file_func (voidpf opaque, voidpf stream) in win32_tell64_file_func()
286 ZPOS64_T ret= (ZPOS64_T)-1; in win32_tell64_file_func()
300 ret = (ZPOS64_T)-1; in win32_tell64_file_func()
347 long ZCALLBACK win32_seek64_file_func (voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) in win32_seek64_file_func()
Dzip.h324 ZPOS64_T uncompressed_size,
Dminizip.c227 ZPOS64_T pos = 0; in isLargeFile()
Dminiunz.c206 void Display64BitsSize(ZPOS64_T n, int size_char) in Display64BitsSize()