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