Searched refs:uLong (Results 1 - 25 of 44) sorted by relevance

12

/external/zlib/contrib/minizip/
H A Dmztools.h28 uLong* nRecovered,
29 uLong* bytesRecovered);
H A Dunzip.h100 uLong size_comment; /* size of the global comment of the zipfile */
105 uLong number_entry; /* total number of entries in
107 uLong size_comment; /* size of the global comment of the zipfile */
113 uLong version; /* version made by 2 bytes */
114 uLong version_needed; /* version needed to extract 2 bytes */
115 uLong flag; /* general purpose bit flag 2 bytes */
116 uLong compression_method; /* compression method 2 bytes */
117 uLong dosDate; /* last mod file date in Dos fmt 4 bytes */
118 uLong crc; /* crc-32 4 bytes */
121 uLong size_filenam
[all...]
H A Dzip.h102 uLong dosDate; /* if dos_date == 0, tmu_date is used */
103 /* uLong flag; */ /* general purpose bit flag 2 bytes */
105 uLong internal_fa; /* internal file attributes 2 bytes */
106 uLong external_fa; /* external file attributes 4 bytes */
231 uLong crcForCrypting));
248 uLong crcForCrypting,
274 uLong crcForCrypting,
275 uLong versionMadeBy,
276 uLong flagBase
295 uLong crcForCryptin
[all...]
H A Dioapi.c35 uLong offsetTruncated = (uLong)offset;
49 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
50 if ((tell_uLong) == ((uLong)-1))
76 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
77 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size));
120 static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong siz
[all...]
H A Dzip.c117 uLong avail_in_this_block;
118 uLong filled_in_this_block;
119 uLong unused; /* for future use and alignement */
143 uLong size_centralExtra;
144 uLong size_centralheader; /* size of the central header for cur file */
145 uLong size_centralExtraFree; /* Extra bytes allocated to the centralheader but that are not used */
146 uLong flag; /* flag of the file currently writing */
151 uLong dosDate;
152 uLong crc32;
225 local int add_data_in_datablock(linkedlist_data* ll, const void* buf, uLong le
[all...]
H A Dunzip.c144 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)
243 uLong x ;
248 x = (uLong)i;
252 x |= ((uLong)i)<<8;
264 uLong *p
[all...]
H A Dioapi.h128 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
129 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
134 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
H A Dminiunz.c72 uLong dosdate;
224 uLong i;
237 uLong ratio=0;
247 ratio = (uLong)((file_info.compressed_size*100)/file_info.uncompressed_size);
279 (uLong)file_info.tmu_date.tm_mon + 1,
280 (uLong)file_info.tmu_date.tm_mday,
281 (uLong)file_info.tmu_date.tm_year % 100,
282 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
283 (uLong)file_inf
[all...]
H A Diowin32.c29 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
30 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
148 uLong ZCALLBACK win32_read_file_func (voidpf opaque, voidpf stream, void* buf,uLong size)
150 uLong ret=0;
170 uLong ZCALLBACK win32_write_file_func (voidpf opaque,voidpf stream,const void* buf,uLong size)
172 uLong re
[all...]
/external/kernel-headers/original/linux/
H A Dzconf.h54 typedef unsigned long uLong; /* 32 bits or more */ typedef
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */
91 uLong total_out; /* total nb of bytes output so far */
99 uLong adler; /* adler32 value of the uncompressed data */
100 uLong reserved; /* reserved for future use */
/external/qemu/distrib/zlib-1.2.3/
H A Dcompress.c26 uLong sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
66 uLong sourceLen;
75 uLong ZEXPORT compressBound (sourceLen)
76 uLong sourceLen;
H A Duncompr.c30 uLong sourceLen;
38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dzlib.h85 uLong total_in; /* total nb of input bytes read so far */
89 uLong total_out; /* total nb of bytes output so far */
99 uLong adler; /* adler32 value of the uncompressed data */
100 uLong reserved; /* reserved for future use */
111 uLong time; /* modification time */
644 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
645 uLong sourceLen));
957 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
962 3.2: size of uLong
1010 const Bytef *source, uLong sourceLe
[all...]
H A Dadler32.c57 uLong ZEXPORT adler32(adler, buf, len)
58 uLong adler;
128 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
129 uLong adler1;
130 uLong adler2;
/external/zlib/
H A Dcompress.c26 uLong sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
66 uLong sourceLen;
75 uLong ZEXPORT compressBound (sourceLen)
76 uLong sourceLen;
H A Dadler32.c12 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2);
60 uLong ZEXPORT adler32(adler, buf, len)
61 uLong adler;
131 local uLong adler32_combine_(adler1, adler2, len2)
132 uLong adler1;
133 uLong adler2;
155 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
156 uLong adler
[all...]
H A Dzlib.h88 uLong total_in; /* total nb of input bytes read so far */
92 uLong total_out; /* total nb of bytes output so far */
102 uLong adler; /* adler32 value of the uncompressed data */
103 uLong reserved; /* reserved for future use */
114 uLong time; /* modification time */
684 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
685 uLong sourceLen));
1050 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
1055 3.2: size of uLong
1103 const Bytef *source, uLong sourceLe
[all...]
H A Duncompr.c28 uLong sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dexample.c35 uLong dictId; /* Adler32 value of the dictionary */
37 void test_compress OF((Byte *compr, uLong comprLen,
38 Byte *uncompr, uLong uncomprLen));
40 Byte *uncompr, uLong uncomprLen));
41 void test_deflate OF((Byte *compr, uLong comprLen));
42 void test_inflate OF((Byte *compr, uLong comprLen,
43 Byte *uncompr, uLong uncomprLen));
44 void test_large_deflate OF((Byte *compr, uLong comprLen,
45 Byte *uncompr, uLong uncomprLen));
46 void test_large_inflate OF((Byte *compr, uLong comprLe
[all...]
H A Dcrc32.c71 local uLong crc32_combine_(uLong crc1, uLong crc2, z_off64_t len2);
372 local uLong crc32_combine_(crc1, crc2, len2)
373 uLong crc1;
374 uLong crc2;
428 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
429 uLong crc1;
430 uLong crc2;
436 uLong ZEXPOR
[all...]
H A Dzutil.h164 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
165 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
/external/chromium/sdch/open-vcdiff/src/
H A Dzlib.h85 uLong total_in; /* total nb of input bytes read so far */
89 uLong total_out; /* total nb of bytes output so far */
99 uLong adler; /* adler32 value of the uncompressed data */
100 uLong reserved; /* reserved for future use */
111 uLong time; /* modification time */
644 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
645 uLong sourceLen));
957 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
962 3.2: size of uLong
1010 const Bytef *source, uLong sourceLe
[all...]
H A Dchecksum.h27 typedef uLong VCDChecksum;
H A Dadler32.c61 uLong high = 0;
62 uLong low = 1;
90 uLong *min;
91 uLong *max;
97 uLong ZEXPORT adler32(adler, buf, len)
98 uLong adler;
168 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
169 uLong adler1;
170 uLong adler2;

Completed in 192 milliseconds

12