Lines Matching refs:uch
139 uch e; /* number of extra bits or operation */
140 uch b; /* number of bits in this code or subcode */
232 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; })
506 r.b = (uch)l; /* bits to dump before this table */ in huft_build()
507 r.e = (uch)(16 + j); /* bits in this table */ in huft_build()
517 r.b = (uch)(k - w); in huft_build()
522 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build()
528 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build()
628 slide[w++] = (uch)t->v.n; in inflate_codes()
738 slide[w++] = (uch)b; in inflate_stored()
1195 uch flags; in gunzip()
1218 flags = (uch)get_byte(); in gunzip()