Lines Matching refs:uLong
144 uLong stream_initialised; /* flag set if stream structure is initialised*/
151 uLong crc32; /* crc32 of all data uncompressed */
152 uLong crc32_wait; /* crc32 we must obtain after decompress all */
157 uLong compression_method; /* compression method (0==store) */
237 uLong *pX));
241 uLong *pX) in unz64local_getShort()
243 uLong x ; in unz64local_getShort()
248 x = (uLong)i; in unz64local_getShort()
252 x |= ((uLong)i)<<8; in unz64local_getShort()
264 uLong *pX));
268 uLong *pX) in unz64local_getLong()
270 uLong x ; in unz64local_getLong()
275 x = (uLong)i; in unz64local_getLong()
279 x |= ((uLong)i)<<8; in unz64local_getLong()
283 x |= ((uLong)i)<<16; in unz64local_getLong()
287 x += ((uLong)i)<<24; in unz64local_getLong()
437 uLong uReadSize; in unz64local_SearchCentralDir()
447 (BUFREADCOMMENT+4) : (uLong)(uSizeFile-uReadPos); in unz64local_SearchCentralDir()
486 uLong uL; in unz64local_SearchCentralDir64()
505 uLong uReadSize; in unz64local_SearchCentralDir64()
515 (BUFREADCOMMENT+4) : (uLong)(uSizeFile-uReadPos); in unz64local_SearchCentralDir64()
591 uLong uL; in unzOpenInternal()
593 uLong number_disk; /* number of the current dist, used for in unzOpenInternal()
595 uLong number_disk_with_CD; /* number the the disk with central dir, used in unzOpenInternal()
626 uLong uS; in unzOpenInternal()
845 pglobal_info32->number_entry = (uLong)s->gi.number_entry; in unzGetGlobalInfo()
873 uLong fileNameBufferSize,
875 uLong extraFieldBufferSize,
877 uLong commentBufferSize));
884 uLong fileNameBufferSize, in unz64local_GetCurrentFileInfoInternal()
886 uLong extraFieldBufferSize, in unz64local_GetCurrentFileInfoInternal()
888 uLong commentBufferSize) in unz64local_GetCurrentFileInfoInternal()
894 uLong uMagic; in unz64local_GetCurrentFileInfoInternal()
896 uLong uL; in unz64local_GetCurrentFileInfoInternal()
970 uLong uSizeRead ; in unz64local_GetCurrentFileInfoInternal()
1003 if (ZREAD64(s->z_filefunc, s->filestream,extraField,(uLong)uSizeRead)!=uSizeRead) in unz64local_GetCurrentFileInfoInternal()
1006 lSeek += file_info.size_file_extra - (uLong)uSizeRead; in unz64local_GetCurrentFileInfoInternal()
1014 uLong acc = 0; in unz64local_GetCurrentFileInfoInternal()
1029 uLong headerId; in unz64local_GetCurrentFileInfoInternal()
1030 uLong dataSize; in unz64local_GetCurrentFileInfoInternal()
1041 uLong uL; in unz64local_GetCurrentFileInfoInternal()
1082 uLong uSizeRead ; in unz64local_GetCurrentFileInfoInternal()
1126 char * szFileName, uLong fileNameBufferSize, in unzGetCurrentFileInfo64()
1127 void *extraField, uLong extraFieldBufferSize, in unzGetCurrentFileInfo64()
1128 char* szComment, uLong commentBufferSize) in unzGetCurrentFileInfo64()
1138 char * szFileName, uLong fileNameBufferSize, in unzGetCurrentFileInfo()
1139 void *extraField, uLong extraFieldBufferSize, in unzGetCurrentFileInfo()
1140 char* szComment, uLong commentBufferSize) in unzGetCurrentFileInfo()
1168 pfile_info->compressed_size = (uLong)file_info64.compressed_size; in unzGetCurrentFileInfo()
1169 pfile_info->uncompressed_size = (uLong)file_info64.uncompressed_size; in unzGetCurrentFileInfo()
1332 file_pos->pos_in_zip_directory = (uLong)file_pos64.pos_in_zip_directory; in unzGetFilePos()
1333 file_pos->num_of_file = (uLong)file_pos64.num_of_file; in unzGetFilePos()
1389 uLong uMagic,uData,uFlags; in unz64local_CheckCurrentFileCoherencyHeader()
1390 uLong size_filename; in unz64local_CheckCurrentFileCoherencyHeader()
1391 uLong size_extra_field; in unz64local_CheckCurrentFileCoherencyHeader()
1798 uLong uTotalOutBefore,uTotalOutAfter; in unzReadCurrentFile()
1800 uLong uOutThis; in unzReadCurrentFile()
2051 extern int ZEXPORT unzGetGlobalComment (unzFile file, char * szComment, uLong uSizeBuf) in unzGetGlobalComment()
2054 uLong uReadThis ; in unzGetGlobalComment()
2094 extern uLong ZEXPORT unzGetOffset (unzFile file) in unzGetOffset()
2101 return (uLong)offset64; in unzGetOffset()
2122 extern int ZEXPORT unzSetOffset (unzFile file, uLong pos) in unzSetOffset()