Lines Matching refs:uch
140 uch e; /* number of extra bits or operation */
141 uch b; /* number of bits in this code or subcode */
233 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; })
507 r.b = (uch)l; /* bits to dump before this table */ in huft_build()
508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build()
518 r.b = (uch)(k - w); in huft_build()
523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build()
529 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build()
629 slide[w++] = (uch)t->v.n; in inflate_codes()
739 slide[w++] = (uch)b; in inflate_stored()
1196 uch flags; in gunzip()
1219 flags = (uch)get_byte(); in gunzip()