/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | zip.c | 77 #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; 283 nbByte == 1, 2 ,4 or 8 (byte, short or long, ZPOS64_T) [all...] |
H A D | unzip.c | 124 ZPOS64_T offset_curfile;/* relative offset of local header 8 bytes */ 139 ZPOS64_T pos_in_zipfile; /* position in byte on the zipfile, for fseek*/ 142 ZPOS64_T offset_local_extrafield;/* offset of the local extra field */ 144 ZPOS64_T pos_local_extrafield; /* position in the local extra field in read*/ 145 ZPOS64_T total_out_64; 149 ZPOS64_T rest_read_compressed; /* number of byte to be decompressed */ 150 ZPOS64_T rest_read_uncompressed;/*number of byte to be obtained after decomp*/ 154 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/ 167 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/ 168 ZPOS64_T num_fil [all...] |
H A D | ioapi.h | 13 Oct-2009 - Defined ZPOS64_T to fpos_t on windows and u_int64_t on linux. (might need to find a better why for this) 71 #ifndef ZPOS64_T 73 #define ZPOS64_T fpos_t 76 #define ZPOS64_T uint64_t 87 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)); 159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offse [all...] |
H A D | unzip.h | 98 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);
|
H A D | ioapi.c | 41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) 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 origin)); 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()
|
H A D | iowin32.c | 44 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream)); 45 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); 289 ZPOS64_T ZCALLBACK win32_tell64_file_func (voidpf opaque, voidpf stream) in win32_tell64_file_func() 291 ZPOS64_T ret= (ZPOS64_T)-1; in win32_tell64_file_func() 305 ret = (ZPOS64_T)-1; in win32_tell64_file_func() 352 long ZCALLBACK win32_seek64_file_func (voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) in win32_seek64_file_func()
|
H A D | zip.h | 324 ZPOS64_T uncompressed_size,
|
H A D | minizip.c | 226 ZPOS64_T pos = 0; in isLargeFile()
|
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | zip.c | 77 #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; 283 nbByte == 1, 2 ,4 or 8 (byte, short or long, ZPOS64_T) [all...] |
H A D | unzip.c | 124 ZPOS64_T offset_curfile;/* relative offset of local header 8 bytes */ 139 ZPOS64_T pos_in_zipfile; /* position in byte on the zipfile, for fseek*/ 142 ZPOS64_T offset_local_extrafield;/* offset of the local extra field */ 144 ZPOS64_T pos_local_extrafield; /* position in the local extra field in read*/ 145 ZPOS64_T total_out_64; 149 ZPOS64_T rest_read_compressed; /* number of byte to be decompressed */ 150 ZPOS64_T rest_read_uncompressed;/*number of byte to be obtained after decomp*/ 154 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/ 167 ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/ 168 ZPOS64_T num_fil [all...] |
H A D | ioapi.h | 13 Oct-2009 - Defined ZPOS64_T to fpos_t on windows and u_int64_t on linux. (might need to find a better why for this) 71 #ifndef ZPOS64_T 73 #define ZPOS64_T fpos_t 76 #define ZPOS64_T uint64_t 87 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)); 159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offse [all...] |
H A D | unzip.h | 98 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);
|
H A D | ioapi.c | 41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) 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 origin)); 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()
|
H A D | iowin32.c | 44 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream)); 45 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); 289 ZPOS64_T ZCALLBACK win32_tell64_file_func (voidpf opaque, voidpf stream) in win32_tell64_file_func() 291 ZPOS64_T ret= (ZPOS64_T)-1; in win32_tell64_file_func() 305 ret = (ZPOS64_T)-1; in win32_tell64_file_func() 352 long ZCALLBACK win32_seek64_file_func (voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) in win32_seek64_file_func()
|
H A D | zip.h | 324 ZPOS64_T uncompressed_size,
|
/third_party/zlib/contrib/minizip/ |
H A D | unzip.c | 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_fil [all...] |
H A D | zip.c | 73 #define MAKEULONG64(a, b) ((ZPOS64_T)(((unsigned long)(a)) | ((ZPOS64_T)((unsigned long)(b))) << 32)) 136 ZPOS64_T pos_local_header; /* offset of the local header of the file 151 ZPOS64_T pos_zip64extrainfo; 152 ZPOS64_T totalCompressedData; 153 ZPOS64_T totalUncompressedData; 169 ZPOS64_T begin_pos; /* position of the beginning of the zipfile */ 170 ZPOS64_T add_position_when_writing_offset; 171 ZPOS64_T number_entry; 286 nbByte == 1, 2 ,4 or 8 (byte, short or long, ZPOS64_T) [all...] |
H A D | ioapi.h | 13 Oct-2009 - Defined ZPOS64_T to fpos_t on windows and u_int64_t on linux. (might need to find a better why for this) 73 #ifndef ZPOS64_T 75 #define ZPOS64_T fpos_t 78 #define ZPOS64_T uint64_t 89 typedef 64BIT_INT_CUSTOM_TYPE ZPOS64_T; typedef 93 typedef uint64_t ZPOS64_T; typedef 99 typedef unsigned __int64 ZPOS64_T; typedef 101 typedef unsigned long long int ZPOS64_T; typedef 162 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) (voidpf opaque, voidpf stream); 163 typedef long (ZCALLBACK *seek64_file_func) (voidpf opaque, voidpf stream, ZPOS64_T offse [all...] |
H A D | unzip.h | 98 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 */ 297 ZPOS64_T pos_in_zip_directory; /* offset in zip file directory */ 298 ZPOS64_T num_of_file; /* # of file */ 344 extern ZPOS64_T ZEXPORT unzGetCurrentFileZStreamPos64(unzFile file); 418 extern ZPOS64_T ZEXPORT unztell64(unzFile file); 447 extern ZPOS64_T ZEXPORT unzGetOffset64 (unzFile file); 451 extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos);
|
H A D | ioapi.c | 41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) 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() 145 static ZPOS64_T ZCALLBACK ftell64_file_func(voidpf opaque, voidpf stream) { in ftell64_file_func() 146 ZPOS64_T ret; in ftell64_file_func() 148 ret = (ZPOS64_T)FTELLO_FUNC((FILE *)stream); in ftell64_file_func() 175 static long ZCALLBACK fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) { in fseek64_file_func()
|
H A D | iowin32.c | 281 ZPOS64_T ZCALLBACK win32_tell64_file_func(voidpf opaque, voidpf stream) in win32_tell64_file_func() 283 ZPOS64_T ret= (ZPOS64_T)-1; in win32_tell64_file_func() 297 ret = (ZPOS64_T)-1; in win32_tell64_file_func() 344 long ZCALLBACK win32_seek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) in win32_seek64_file_func()
|
H A D | minizip.c | 227 ZPOS64_T pos = 0; in isLargeFile() 233 pos = (ZPOS64_T)FTELLO_FUNC(pFile); in isLargeFile()
|
H A D | zip.h | 326 ZPOS64_T uncompressed_size,
|
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | zip_internal.cc | 156 ZPOS64_T length; 157 ZPOS64_T offset; 183 ZPOS64_T remaining_bytes = buffer->length - buffer->offset; in ReadZipBuffer() 204 ZPOS64_T GetOffsetOfZipBuffer(void* opaque, void* /*stream*/) { in GetOffsetOfZipBuffer() 214 ZPOS64_T offset, in SeekZipBuffer()
|
/third_party/node/deps/zlib/google/ |
H A D | zip_internal.cc | 156 ZPOS64_T length; 157 ZPOS64_T offset; 183 ZPOS64_T remaining_bytes = buffer->length - buffer->offset; in ReadZipBuffer() 204 ZPOS64_T GetOffsetOfZipBuffer(void* opaque, void* /*stream*/) { in GetOffsetOfZipBuffer() 214 ZPOS64_T offset, in SeekZipBuffer()
|