Searched refs:uInt (Results 1 – 8 of 8) sorted by relevance
/u-boot/lib/zlib/ |
A D | deflate.h | 110 uInt w_bits; /* log2(w_size) (8..16) */ 111 uInt w_mask; /* w_size - 1 */ 138 uInt hash_bits; /* log2(hash_size) */ 139 uInt hash_mask; /* hash_size-1 */ 141 uInt hash_shift; 160 uInt prev_length; 165 uInt max_chain_length; 171 uInt max_lazy_match; 185 uInt good_match; 216 uInt lit_bufsize; [all …]
|
A D | zutil.c | 51 extern voidp malloc OF((uInt size)); 52 extern voidp calloc OF((uInt items, uInt size)); 61 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc()
|
A D | uncompr.c | 36 const uInt max = (uInt)-1; 65 stream.avail_out = left > (uLong)max ? max : (uInt)left; 70 stream.avail_in = len > (uLong)max ? max : (uInt)len;
|
A D | deflate.c | 315 uInt dictLength; 318 uInt length = dictLength; 319 uInt n; 551 uInt b; 655 uInt level_flags; 1062 local uInt longest_match(s, cur_match) in longest_match() 1078 uInt wmask = s->w_mask; 1201 if ((uInt)best_len <= s->lookahead) return (uInt)best_len; 1211 local uInt longest_match(s, cur_match) in longest_match() 1261 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead; [all …]
|
A D | adler32.c | 57 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
|
A D | trees.c | 1116 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
|
/u-boot/include/u-boot/ |
A D | zlib.h | 102 # define uInt z_uInt macro 320 typedef unsigned int uInt; /* 16 bits or more */ typedef 331 typedef uInt FAR uIntf; 420 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 422 typedef void (*cb_func) OF((Bytef *buf, uInt len)); 428 uInt avail_in; /* number of bytes available at next_in */ 431 uInt avail_out; /* remaining free space at next_out */ 458 uInt extra_max; /* space at extra (only when reading header) */ 460 uInt name_max; /* space at name (only when reading header) */ 535 uInt dictLength)); [all …]
|
/u-boot/lib/ |
A D | crc32.c | 184 uint32_t __efi_runtime crc32_no_comp(uint32_t crc, const Bytef *buf, uInt len) in crc32_no_comp() 226 uint32_t __efi_runtime crc32(uint32_t crc, const Bytef *p, uInt len) in crc32() 235 uint32_t crc32_wd(uint32_t crc, const unsigned char *buf, uInt len, in crc32_wd() 236 uInt chunk_sz) in crc32_wd()
|
Completed in 19 milliseconds