Searched refs:uInt (Results 1 – 7 of 7) sorted by relevance
| /rk3399_rockchip-uboot/lib/zlib/ |
| H A 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 …]
|
| H A D | zutil.c | 50 extern voidp malloc OF((uInt size)); 51 extern voidp calloc OF((uInt items, uInt size)); 60 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc()
|
| H A 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)); 314 uInt dictLength; 317 uInt length = dictLength; 318 uInt n; 550 uInt b; 653 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; 654 uInt level_flags; 673 putShortMSB(s, (uInt)(strm->adler >> 16)); [all …]
|
| H A D | adler32.c | 57 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
|
| H A D | trees.c | 1115 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
|
| /rk3399_rockchip-uboot/include/u-boot/ |
| H A D | zlib.h | 102 # define uInt z_uInt macro 314 typedef unsigned int uInt; /* 16 bits or more */ typedef 325 typedef uInt FAR uIntf; 414 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 415 typedef void (*free_func) OF((voidpf opaque, voidpf address, uInt size)); 416 typedef void (*cb_func) OF((Bytef *buf, uInt len)); 422 uInt avail_in; /* number of bytes available at next_in */ 425 uInt avail_out; /* remaining free space at next_out */ 451 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 452 uInt extra_max; /* space at extra (only when reading header) */ [all …]
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | crc32.c | 179 uint32_t ZEXPORT crc32_no_comp(uint32_t crc, const Bytef *buf, uInt len) in crc32_no_comp() 221 uint32_t ZEXPORT crc32 (uint32_t crc, const Bytef *p, uInt len) in crc32() 232 uInt len, uInt chunk_sz) in crc32_wd()
|