ush               119 third_party/zlib/deflate.c    ush good_length; /* reduce lazy search above this match length */
ush               120 third_party/zlib/deflate.c    ush max_lazy;    /* do not perform lazy search above this match length */
ush               121 third_party/zlib/deflate.c    ush nice_length; /* quit search above this match length */
ush               122 third_party/zlib/deflate.c    ush max_chain;
ush               293 third_party/zlib/deflate.c     overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
ush               295 third_party/zlib/deflate.c     s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
ush               304 third_party/zlib/deflate.c     s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
ush               305 third_party/zlib/deflate.c     s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
ush               413 third_party/zlib/deflate.c     strm->state->bi_buf = (ush)(value & ((1 << bits) - 1));
ush               983 third_party/zlib/deflate.c     overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
ush               998 third_party/zlib/deflate.c     ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
ush               999 third_party/zlib/deflate.c     ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
ush              1162 third_party/zlib/deflate.c     register ush scan_start = *(ushf*)scan;
ush              1163 third_party/zlib/deflate.c     register ush scan_end   = *(ushf*)(scan+best_len-1);
ush                64 third_party/zlib/deflate.h         ush  freq;       /* frequency count */
ush                65 third_party/zlib/deflate.h         ush  code;       /* bit string */
ush                68 third_party/zlib/deflate.h         ush  dad;        /* father node in Huffman tree */
ush                69 third_party/zlib/deflate.h         ush  len;        /* length of bit string */
ush                86 third_party/zlib/deflate.h typedef ush Pos;
ush               205 third_party/zlib/deflate.h     ush bl_count[MAX_BITS+1];
ush               259 third_party/zlib/deflate.h     ush bi_buf;
ush               333 third_party/zlib/deflate.h     ush dist = (distance); \
ush               183 third_party/zlib/trees.c     put_byte(s, (uch)((ush)(w) >> 8)); \
ush               207 third_party/zlib/trees.c         s->bi_buf |= (ush)value << s->bi_valid;
ush               209 third_party/zlib/trees.c         s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
ush               212 third_party/zlib/trees.c         s->bi_buf |= (ush)value << s->bi_valid;
ush               222 third_party/zlib/trees.c     s->bi_buf |= (ush)val << s->bi_valid;\
ush               224 third_party/zlib/trees.c     s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
ush               227 third_party/zlib/trees.c     s->bi_buf |= (ush)(value) << s->bi_valid;\
ush               248 third_party/zlib/trees.c     ush bl_count[MAX_BITS+1];
ush               508 third_party/zlib/trees.c     ush f;              /* frequency */
ush               522 third_party/zlib/trees.c         tree[n].Len = (ush)bits;
ush               566 third_party/zlib/trees.c                 tree[m].Len = (ush)bits;
ush               586 third_party/zlib/trees.c     ush next_code[MAX_BITS+1]; /* next code value for each bit length */
ush               587 third_party/zlib/trees.c     ush code = 0;              /* running code value */
ush               683 third_party/zlib/trees.c         tree[n].Dad = tree[m].Dad = (ush)node;
ush               725 third_party/zlib/trees.c     tree[max_code+1].Len = (ush)0xffff; /* guard */
ush              1031 third_party/zlib/trees.c     s->d_buf[s->last_lit] = (ush)dist;
ush              1040 third_party/zlib/trees.c         Assert((ush)dist < (ush)MAX_DIST(s) &&
ush              1041 third_party/zlib/trees.c                (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
ush              1042 third_party/zlib/trees.c                (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
ush              1232 third_party/zlib/trees.c         put_short(s, (ush)len);
ush              1233 third_party/zlib/trees.c         put_short(s, (ush)~len);
ush               226 third_party/zlib/zutil.c         if (*(ush*)&buf != 0) return buf;
ush               234 third_party/zlib/zutil.c     *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
ush               235 third_party/zlib/zutil.c     *(ush*)&buf = 0;
ush               243 third_party/zlib/zutil.c     if (*(ush*)&ptr != 0) { /* object < 64K */
ush                55 third_party/zlib/zutil.h typedef ush FAR ushf;