ush               118 3rdparty/zlib/deflate.c    ush good_length; /* reduce lazy search above this match length */
ush               119 3rdparty/zlib/deflate.c    ush max_lazy;    /* do not perform lazy search above this match length */
ush               120 3rdparty/zlib/deflate.c    ush nice_length; /* quit search above this match length */
ush               121 3rdparty/zlib/deflate.c    ush max_chain;
ush               301 3rdparty/zlib/deflate.c     overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
ush               303 3rdparty/zlib/deflate.c     s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
ush               312 3rdparty/zlib/deflate.c     s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
ush               313 3rdparty/zlib/deflate.c     s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
ush               480 3rdparty/zlib/deflate.c         s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
ush              1043 3rdparty/zlib/deflate.c     overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
ush              1058 3rdparty/zlib/deflate.c     ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
ush              1059 3rdparty/zlib/deflate.c     ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
ush              1171 3rdparty/zlib/deflate.c     register ush scan_start = *(ushf*)scan;
ush              1172 3rdparty/zlib/deflate.c     register ush scan_end   = *(ushf*)(scan+best_len-1);
ush                67 3rdparty/zlib/deflate.h         ush  freq;       /* frequency count */
ush                68 3rdparty/zlib/deflate.h         ush  code;       /* bit string */
ush                71 3rdparty/zlib/deflate.h         ush  dad;        /* father node in Huffman tree */
ush                72 3rdparty/zlib/deflate.h         ush  len;        /* length of bit string */
ush                89 3rdparty/zlib/deflate.h typedef ush Pos;
ush               203 3rdparty/zlib/deflate.h     ush bl_count[MAX_BITS+1];
ush               257 3rdparty/zlib/deflate.h     ush bi_buf;
ush               332 3rdparty/zlib/deflate.h     ush dist = (distance); \
ush               178 3rdparty/zlib/trees.c     put_byte(s, (uch)((ush)(w) >> 8)); \
ush               202 3rdparty/zlib/trees.c         s->bi_buf |= (ush)value << s->bi_valid;
ush               204 3rdparty/zlib/trees.c         s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
ush               207 3rdparty/zlib/trees.c         s->bi_buf |= (ush)value << s->bi_valid;
ush               217 3rdparty/zlib/trees.c     s->bi_buf |= (ush)val << s->bi_valid;\
ush               219 3rdparty/zlib/trees.c     s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
ush               222 3rdparty/zlib/trees.c     s->bi_buf |= (ush)(value) << s->bi_valid;\
ush               243 3rdparty/zlib/trees.c     ush bl_count[MAX_BITS+1];
ush               502 3rdparty/zlib/trees.c     ush f;              /* frequency */
ush               516 3rdparty/zlib/trees.c         tree[n].Len = (ush)bits;
ush               560 3rdparty/zlib/trees.c                 tree[m].Len = (ush)bits;
ush               580 3rdparty/zlib/trees.c     ush next_code[MAX_BITS+1]; /* next code value for each bit length */
ush               581 3rdparty/zlib/trees.c     ush code = 0;              /* running code value */
ush               677 3rdparty/zlib/trees.c         tree[n].Dad = tree[m].Dad = (ush)node;
ush               719 3rdparty/zlib/trees.c     tree[max_code+1].Len = (ush)0xffff; /* guard */
ush              1015 3rdparty/zlib/trees.c     s->d_buf[s->last_lit] = (ush)dist;
ush              1024 3rdparty/zlib/trees.c         Assert((ush)dist < (ush)MAX_DIST(s) &&
ush              1025 3rdparty/zlib/trees.c                (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
ush              1026 3rdparty/zlib/trees.c                (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
ush              1214 3rdparty/zlib/trees.c         put_short(s, (ush)len);
ush              1215 3rdparty/zlib/trees.c         put_short(s, (ush)~len);
ush               230 3rdparty/zlib/zutil.c         if (*(ush*)&buf != 0) return buf;
ush               238 3rdparty/zlib/zutil.c     *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
ush               239 3rdparty/zlib/zutil.c     *(ush*)&buf = 0;
ush               247 3rdparty/zlib/zutil.c     if (*(ush*)&ptr != 0) { /* object < 64K */
ush                44 3rdparty/zlib/zutil.h typedef ush FAR ushf;