Searched refs:uInt (Results 1 – 5 of 5) sorted by relevance
85 uInt w_size; /* LZ77 window size (32K by default) */86 uInt w_bits; /* log2(w_size) (8..16) */87 uInt w_mask; /* w_size - 1 */112 uInt ins_h; /* hash index of string to be inserted */113 uInt hash_size; /* number of elements in hash table */114 uInt hash_bits; /* log2(hash_size) */115 uInt hash_mask; /* hash_size-1 */117 uInt hash_shift;129 uInt match_length; /* length of best match */132 uInt strstart; /* start of string to insert */[all …]
74 static void putShortMSB (deflate_state *s, uInt b);77 static uInt longest_match (deflate_state *s, IPos cur_match);290 uInt b in putShortMSB()354 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in zlib_deflate()355 uInt level_flags = (s->level-1) >> 1; in zlib_deflate()367 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate()368 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate()454 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate()455 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate()554 static uInt longest_match( in longest_match()[all …]
48 uInt len);80 uInt len) in zlib_adler32()
53 typedef unsigned int uInt; /* 16 bits or more */ typedef
761 uInt saved_ao = z->avail_out; in zlib_inflateIncomp()