Home
last modified time | relevance | path

Searched refs:uch (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Ddeflate.h216 uch depth[2*L_CODES+1];
319 extern uch ZLIB_INTERNAL _length_code[];
320 extern uch ZLIB_INTERNAL _dist_code[];
322 extern const uch ZLIB_INTERNAL _length_code[];
323 extern const uch ZLIB_INTERNAL _dist_code[];
327 { uch cc = (c); \
334 { uch len = (uch)(length); \
H A Dtrees.h73 const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {
102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
H A Dtrees.c71 local const uch bl_order[BL_CODES]
98 uch _dist_code[DIST_CODE_LEN];
104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
175 put_byte(s, (uch)((w) & 0xff)); \
176 put_byte(s, (uch)((ush)(w) >> 8)); \
260 _length_code[length++] = (uch)code; in tr_static_init()
268 _length_code[length-1] = (uch)code; in tr_static_init()
275 _dist_code[dist++] = (uch)code; in tr_static_init()
283 _dist_code[256 + dist++] = (uch)code; in tr_static_init()
673 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
[all …]
H A Dzutil.h46 typedef unsigned char uch; typedef
47 typedef uch FAR uchf;
H A Dzutil.c237 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4; in zcalloc()