Symbol: ush
block/partitions/sun.c
26
__be16 *ush;
block/partitions/sun.c
81
ush = ((__be16 *) (label+1)) - 1;
block/partitions/sun.c
82
for (csum = 0; ush >= ((__be16 *) label);)
block/partitions/sun.c
83
csum ^= *ush--;
lib/inflate.c
143
ush n; /* literal, length base, or distance base */
lib/inflate.c
151
const ush *, const ush *, struct huft **, int *));
lib/inflate.c
176
static const ush cplens[] = { /* Copy lengths for literal codes 257..285 */
lib/inflate.c
180
static const ush cplext[] = { /* Extra bits for literal codes 257..285 */
lib/inflate.c
183
static const ush cpdist[] = { /* Copy offsets for distance codes 0..29 */
lib/inflate.c
187
static const ush cpdext[] = { /* Extra bits for distance codes */
lib/inflate.c
227
STATIC const ush mask_bits[] = {
lib/inflate.c
326
const ush *d, /* list of base values for non-simple codes */
lib/inflate.c
327
const ush *e, /* list of extra bits for non-simple codes */
lib/inflate.c
524
r.v.n = (ush)(*p); /* simple code is just the value */
lib/zlib_deflate/deflate.c
128
ush good_length; /* reduce lazy search above this match length */
lib/zlib_deflate/deflate.c
129
ush max_lazy; /* do not perform lazy search above this match length */
lib/zlib_deflate/deflate.c
130
ush nice_length; /* quit search above this match length */
lib/zlib_deflate/deflate.c
131
ush max_chain;
lib/zlib_deflate/deflate.c
199
ush *overlay;
lib/zlib_deflate/deflate.c
264
overlay = (ush *) mem->overlay_memory;
lib/zlib_deflate/deflate.c
266
s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
lib/zlib_deflate/deflate.c
268
s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
lib/zlib_deflate/deflate.c
269
s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
lib/zlib_deflate/deflate.c
586
register ush scan_start = *(ush*)scan;
lib/zlib_deflate/deflate.c
587
register ush scan_end = *(ush*)(scan+best_len-1);
lib/zlib_deflate/deflate.c
621
if (*(ush*)(match+best_len-1) != scan_end ||
lib/zlib_deflate/deflate.c
622
*(ush*)match != scan_start) continue;
lib/zlib_deflate/deflate.c
636
} while (*(ush*)(scan+=2) == *(ush*)(match+=2) &&
lib/zlib_deflate/deflate.c
637
*(ush*)(scan+=2) == *(ush*)(match+=2) &&
lib/zlib_deflate/deflate.c
638
*(ush*)(scan+=2) == *(ush*)(match+=2) &&
lib/zlib_deflate/deflate.c
639
*(ush*)(scan+=2) == *(ush*)(match+=2) &&
lib/zlib_deflate/deflate.c
688
scan_end = *(ush*)(scan+best_len-1);
lib/zlib_deflate/deftree.c
1046
put_short(s, (ush)len);
lib/zlib_deflate/deftree.c
1047
put_short(s, (ush)~len);
lib/zlib_deflate/deftree.c
135
static void gen_codes (ct_data *tree, int max_code, ush *bl_count);
lib/zlib_deflate/deftree.c
179
ush bl_count[MAX_BITS+1];
lib/zlib_deflate/deftree.c
368
ush f; /* frequency */
lib/zlib_deflate/deftree.c
382
tree[n].Len = (ush)bits;
lib/zlib_deflate/deftree.c
426
tree[m].Len = (ush)bits;
lib/zlib_deflate/deftree.c
444
ush *bl_count /* number of codes at each bit length */
lib/zlib_deflate/deftree.c
447
ush next_code[MAX_BITS+1]; /* next code value for each bit length */
lib/zlib_deflate/deftree.c
448
ush code = 0; /* running code value */
lib/zlib_deflate/deftree.c
544
tree[n].Dad = tree[m].Dad = (ush)node;
lib/zlib_deflate/deftree.c
587
tree[max_code+1].Len = (ush)0xffff; /* guard */
lib/zlib_deflate/deftree.c
921
s->d_buf[s->last_lit] = (ush)dist;
lib/zlib_deflate/deftree.c
930
Assert((ush)dist < (ush)MAX_DIST(s) &&
lib/zlib_deflate/deftree.c
931
(ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
lib/zlib_deflate/deftree.c
932
(ush)d_code(dist) < (ush)D_CODES, "zlib_tr_tally: bad match");
lib/zlib_deflate/defutil.h
178
ush bl_count[MAX_BITS+1];
lib/zlib_deflate/defutil.h
216
ush *d_buf;
lib/zlib_deflate/defutil.h
232
ush bi_buf;
lib/zlib_deflate/defutil.h
255
((1 << ((memLevel)+6)) * (sizeof(ush)+2))
lib/zlib_deflate/defutil.h
290
put_byte(s, (uch)((ush)(w) >> 8)); \
lib/zlib_deflate/defutil.h
380
s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
lib/zlib_deflate/defutil.h
395
s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
lib/zlib_deflate/defutil.h
44
ush freq; /* frequency count */
lib/zlib_deflate/defutil.h
45
ush code; /* bit string */
lib/zlib_deflate/defutil.h
48
ush dad; /* father node in Huffman tree */
lib/zlib_deflate/defutil.h
49
ush len; /* length of bit string */
lib/zlib_deflate/defutil.h
66
typedef ush Pos;