/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | deflate.h | 100 uInt pending; /* nb of bytes in the pending buffer */ 103 uInt gzindex; /* where in extra, name, or comment */ 109 uInt w_size; /* LZ77 window size (32K by default) */ 110 uInt w_bits; /* log2(w_size) (8..16) */ 111 uInt w_mask; /* w_size - 1 */ 136 uInt ins_h; /* hash index of string to be inserted */ 137 uInt hash_size; /* number of elements in hash table */ 138 uInt hash_bits; /* log2(hash_size) */ 139 uInt hash_mask; /* hash_size-1 */ 141 uInt hash_shift; [all …]
|
D | zutil.c | 37 switch (sizeof(uInt)) { in zlibCompileFlags() 152 uInt len; 163 uInt len; 165 uInt j; 175 uInt len; 295 extern voidp malloc OF((uInt size)); 296 extern voidp calloc OF((uInt items, uInt size)); 306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
D | zlib.h | 77 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 84 uInt avail_in; /* number of bytes available at next_in */ 88 uInt avail_out; /* remaining free space at next_out */ 115 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 116 uInt extra_max; /* space at extra (only when reading header) */ 118 uInt name_max; /* space at name (only when reading header) */ 120 uInt comm_max; /* space at comment (only when reading header) */ 540 uInt dictLength)); 738 uInt dictLength)); 1260 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); [all …]
|
D | example.c | 263 c_stream.avail_out = (uInt)comprLen; 269 c_stream.avail_in = (uInt)uncomprLen; 280 c_stream.avail_in = (uInt)comprLen/2; 287 c_stream.avail_in = (uInt)uncomprLen; 317 d_stream.avail_in = (uInt)comprLen; 324 d_stream.avail_out = (uInt)uncomprLen; 350 uInt len = (uInt)strlen(hello)+1; 362 c_stream.avail_out = (uInt)*comprLen; 402 d_stream.avail_out = (uInt)uncomprLen; 407 d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */ [all …]
|
D | deflate.c | 83 local void putShortMSB OF((deflate_state *s, uInt b)); 89 uInt longest_match OF((deflate_state *s, IPos cur_match)); 91 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 94 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match)); 318 uInt dictLength; 321 uInt length = dictLength; 322 uInt n; 520 uInt b; 625 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; 626 uInt level_flags; [all …]
|
D | uncompr.c | 36 stream.avail_in = (uInt)sourceLen; 41 stream.avail_out = (uInt)*destLen;
|
D | gzio.c | 39 extern voidp malloc OF((uInt size)); 267 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file); 293 uInt len; 303 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file); 334 len = (uInt)get_byte(s); 335 len += ((uInt)get_byte(s))<<8; 429 uInt n = s->stream.avail_in; 441 (uInt)fread(next_out, 1, s->stream.avail_out, s->file); 452 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file); 470 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); [all …]
|
D | compress.c | 33 stream.avail_in = (uInt)sourceLen; 39 stream.avail_out = (uInt)*destLen;
|
D | zconf.in.h | 51 # define uInt z_uInt macro 263 typedef unsigned int uInt; /* 16 bits or more */ typedef 274 typedef uInt FAR uIntf;
|
D | zutil.h | 243 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 244 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 245 extern void zmemzero OF((Bytef* dest, uInt len));
|
D | zconf.h | 51 # define uInt z_uInt macro 263 typedef unsigned int uInt; /* 16 bits or more */ typedef 274 typedef uInt FAR uIntf;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | deflate.h | 103 uInt pending; /* nb of bytes in the pending buffer */ 106 uInt gzindex; /* where in extra, name, or comment */ 112 uInt w_size; /* LZ77 window size (32K by default) */ 113 uInt w_bits; /* log2(w_size) (8..16) */ 114 uInt w_mask; /* w_size - 1 */ 139 uInt ins_h; /* hash index of string to be inserted */ 140 uInt hash_size; /* number of elements in hash table */ 141 uInt hash_bits; /* log2(hash_size) */ 142 uInt hash_mask; /* hash_size-1 */ 144 uInt hash_shift; [all …]
|
D | zutil.c | 40 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 155 uInt len; 166 uInt len; 168 uInt j; 178 uInt len; 279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 299 extern voidp malloc OF((uInt size)); 300 extern voidp calloc OF((uInt items, uInt size)); 310 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
D | example.c | 294 c_stream.avail_out = (uInt)comprLen; 300 c_stream.avail_in = (uInt)uncomprLen; 311 c_stream.avail_in = (uInt)comprLen/2; 318 c_stream.avail_in = (uInt)uncomprLen; 348 d_stream.avail_in = (uInt)comprLen; 355 d_stream.avail_out = (uInt)uncomprLen; 381 uInt len = (uInt)strlen(hello)+1; 393 c_stream.avail_out = (uInt)*comprLen; 433 d_stream.avail_out = (uInt)uncomprLen; 438 d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */ [all …]
|
D | zlib.h | 80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 87 uInt avail_in; /* number of bytes available at next_in */ 91 uInt avail_out; /* remaining free space at next_out */ 118 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 119 uInt extra_max; /* space at extra (only when reading header) */ 121 uInt name_max; /* space at name (only when reading header) */ 123 uInt comm_max; /* space at comment (only when reading header) */ 589 uInt dictLength)); 821 uInt dictLength)); 844 uInt *dictLength)); [all …]
|
D | uncompr.c | 34 stream.avail_in = (uInt)sourceLen; 39 stream.avail_out = (uInt)*destLen;
|
D | deflate.c | 85 local void putShortMSB OF((deflate_state *s, uInt b)); 90 uInt longest_match OF((deflate_state *s, IPos cur_match)); 92 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 326 uInt dictLength; 329 uInt str, n; 630 uInt b; 738 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; 739 uInt level_flags; 758 putShortMSB(s, (uInt)(strm->adler >> 16)); 759 putShortMSB(s, (uInt)(strm->adler & 0xffff)); [all …]
|
D | compress.c | 33 stream.avail_in = (uInt)sourceLen; 39 stream.avail_out = (uInt)*destLen;
|
D | zutil.h | 213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 214 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 215 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
D | zconf.h | 141 # define uInt z_uInt macro 370 typedef unsigned int uInt; /* 16 bits or more */ typedef 381 typedef uInt FAR uIntf;
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zutil.c | 34 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 149 uInt len; 160 uInt len; 162 uInt j; 172 uInt len; 277 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 297 extern voidp malloc OF((uInt size)); 298 extern voidp calloc OF((uInt items, uInt size)); 309 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
D | zlib.h | 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 88 uInt avail_in; /* number of bytes available at next_in */ 92 uInt avail_out; /* remaining free space at next_out */ 120 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 121 uInt extra_max; /* space at extra (only when reading header) */ 123 uInt name_max; /* space at name (only when reading header) */ 125 uInt comm_max; /* space at comment (only when reading header) */ 613 uInt dictLength)); 657 uInt *dictLength)); 886 uInt dictLength)); [all …]
|
D | zutil.h | 231 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 232 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 233 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/zlib/ |
D | zutil.h | 243 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 244 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 245 extern void zmemzero OF((Bytef* dest, uInt len));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/ |
D | zutil.h | 216 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 217 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 218 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|