Home
last modified time | relevance | path

Searched refs:uLong (Results 1 – 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dzlib.h88 uLong total_in; /* total number of input bytes read so far */
92 uLong total_out; /* total number 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 */
698 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
699 uLong sourceLen));
1107 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
1161 const Bytef *source, uLong sourceLen));
1175 const Bytef *source, uLong sourceLen,
[all …]
Dadler32.c12 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
65 uLong ZEXPORT adler32(adler, buf, len) in adler32()
66 uLong adler; in adler32()
136 local uLong adler32_combine_(adler1, adler2, len2) in adler32_combine_()
137 uLong adler1; in adler32_combine_()
138 uLong adler2;
165 uLong ZEXPORT adler32_combine(adler1, adler2, len2) in adler32_combine()
166 uLong adler1; in adler32_combine()
167 uLong adler2;
173 uLong ZEXPORT adler32_combine64(adler1, adler2, len2) in adler32_combine64()
[all …]
Dexample.c35 uLong dictId; /* Adler32 value of the dictionary */
37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
39 Byte *uncompr, uLong uncomprLen));
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
41 Byte *uncompr, uLong uncomprLen));
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
43 Byte *uncompr, uLong uncomprLen));
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLen,
[all …]
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) in compressBound()
76 uLong sourceLen; in compressBound()
Dcrc32.c53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
355 local uLong crc32_combine_(crc1, crc2, len2) in crc32_combine_()
356 uLong crc1; in crc32_combine_()
357 uLong crc2;
411 uLong ZEXPORT crc32_combine(crc1, crc2, len2) in crc32_combine()
412 uLong crc1; in crc32_combine()
413 uLong crc2;
419 uLong ZEXPORT crc32_combine64(crc1, crc2, len2) in crc32_combine64()
420 uLong crc1; in crc32_combine64()
421 uLong crc2;
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;
Dzutil.h173 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
174 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
Dzutil.c35 uLong ZEXPORT zlibCompileFlags() in zlibCompileFlags()
37 uLong flags; in zlibCompileFlags()
46 switch ((int)(sizeof(uLong))) { in zlibCompileFlags()
Dzconf.h143 # define uLong z_uLong macro
371 typedef unsigned long uLong; /* 32 bits or more */ typedef
382 typedef uLong FAR uLongf;
Ddeflate.c566 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound()
568 uLong sourceLen;
571 uLong complen, wraplen;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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 comprLen,
[all …]
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));
1010 const Bytef *source, uLong sourceLen));
1025 const Bytef *source, uLong sourceLen,
[all …]
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) in compressBound()
76 uLong sourceLen; in compressBound()
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;
Dadler32.c57 uLong ZEXPORT adler32(adler, buf, len) in adler32()
58 uLong adler; in adler32()
128 uLong ZEXPORT adler32_combine(adler1, adler2, len2) in adler32_combine()
129 uLong adler1; in adler32_combine()
130 uLong adler2;
Dzconf.h52 # define uLong z_uLong macro
264 typedef unsigned long uLong; /* 32 bits or more */ typedef
275 typedef uLong FAR uLongf;
Dzconf.in.h52 # define uLong z_uLong macro
264 typedef unsigned long uLong; /* 32 bits or more */ typedef
275 typedef uLong FAR uLongf;
Dzutil.c32 uLong ZEXPORT zlibCompileFlags() in zlibCompileFlags()
34 uLong flags; in zlibCompileFlags()
43 switch (sizeof(uLong)) { in zlibCompileFlags()
Dgzio.c63 uLong crc; /* crc32 of uncompressed data */
81 local void putLong OF((FILE *file, uLong x));
82 local uLong getLong OF((gz_stream *s));
922 uLong x;
935 local uLong getLong (s) in getLong()
938 uLong x = (uLong)get_byte(s);
941 x += ((uLong)get_byte(s))<<8;
942 x += ((uLong)get_byte(s))<<16;
945 x += ((uLong)c)<<24;
968 putLong (s->file, (uLong)(s->in & 0xffffffff));
Dcrc32.c370 uLong ZEXPORT crc32_combine(crc1, crc2, len2) in crc32_combine()
371 uLong crc1; in crc32_combine()
372 uLong crc2;
Ddeflate.c489 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound()
491 uLong sourceLen;
494 uLong destLen;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
Dzutil.h176 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
177 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));