uch                45 arch/alpha/boot/misc.c static uch *inbuf;		/* input buffer */
uch                46 arch/alpha/boot/misc.c static uch *window;		/* Sliding window buffer */
uch                87 arch/alpha/boot/misc.c static uch *output_data;
uch               127 arch/alpha/boot/misc.c 	uch *in, *out, ch;
uch               157 arch/alpha/boot/misc.c 	output_data		= (uch *)output_start;
uch               158 arch/alpha/boot/misc.c 	input_data		= (uch *)input_start;
uch                35 arch/nios2/boot/compressed/misc.c static uch *inbuf;		/* input buffer */
uch                36 arch/nios2/boot/compressed/misc.c static uch window[WSIZE];	/* Sliding window buffer */
uch                77 arch/nios2/boot/compressed/misc.c static uch *output_data;
uch               137 arch/nios2/boot/compressed/misc.c 	uch *in, *out, ch;
uch               140 lib/inflate.c    uch e;                /* number of extra bits or operation */
uch               141 lib/inflate.c    uch b;                /* number of bits in this code or subcode */
uch               233 lib/inflate.c  #define NEXTBYTE()  ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; })
uch               507 lib/inflate.c            r.b = (uch)l;         /* bits to dump before this table */
uch               508 lib/inflate.c            r.e = (uch)(16 + j);  /* bits in this table */
uch               518 lib/inflate.c        r.b = (uch)(k - w);
uch               523 lib/inflate.c          r.e = (uch)(*p < 256 ? 16 : 15);    /* 256 is end-of-block code */
uch               529 lib/inflate.c          r.e = (uch)e[*p - s];   /* non-simple--look up in lists */
uch               629 lib/inflate.c        slide[w++] = (uch)t->v.n;
uch               739 lib/inflate.c      slide[w++] = (uch)b;
uch              1196 lib/inflate.c      uch flags;
uch              1219 lib/inflate.c      flags  = (uch)get_byte();
uch               239 lib/zlib_deflate/deflate.c     s->pending_buf = (uch *) overlay;
uch                73 lib/zlib_deflate/deftree.c static const uch bl_order[BL_CODES]
uch               100 lib/zlib_deflate/deftree.c static uch dist_code[512];
uch               106 lib/zlib_deflate/deftree.c static uch length_code[MAX_MATCH-MIN_MATCH+1];
uch               243 lib/zlib_deflate/deftree.c             length_code[length++] = (uch)code;
uch               251 lib/zlib_deflate/deftree.c     length_code[length-1] = (uch)code;
uch               258 lib/zlib_deflate/deftree.c             dist_code[dist++] = (uch)code;
uch               266 lib/zlib_deflate/deftree.c             dist_code[256 + dist++] = (uch)code;
uch               597 lib/zlib_deflate/deftree.c         s->depth[node] = (uch) (max(s->depth[n], s->depth[m]) + 1);
uch               976 lib/zlib_deflate/deftree.c     s->l_buf[s->last_lit++] = (uch)lc;
uch               186 lib/zlib_deflate/defutil.h     uch depth[2*L_CODES+1];
uch               190 lib/zlib_deflate/defutil.h     uch *l_buf;          /* buffer for literals or lengths */
uch               291 lib/zlib_deflate/defutil.h     put_byte(s, (uch)((w) & 0xff)); \
uch               292 lib/zlib_deflate/defutil.h     put_byte(s, (uch)((ush)(w) >> 8)); \