Searched refs:ush (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h88 ush freq; /* frequency count */
89 ush code; /* bit string */
92 ush dad; /* father node in Huffman tree */
93 ush len; /* length of bit string */
110 typedef ush Pos;
224 ush bl_count[MAX_BITS+1];
278 ush bi_buf;
341 ush dist = (distance); \
H A Dzutil.c250 if (*(ush*)&buf != 0) return buf;
258 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
259 *(ush*)&buf = 0;
267 if (*(ush*)&ptr != 0) { /* object < 64K */
H A Dtrees.c206 put_byte(s, (uch)((ush)(w) >> 8)); \
232 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
247 s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
271 ush bl_count[MAX_BITS+1];
528 ush f; /* frequency */
542 tree[n].Len = (ush)bits;
586 tree[m].Len = (ush)bits;
606 ush next_code[MAX_BITS+1]; /* next code value for each bit length */
607 ush code = 0; /* running code value */
703 tree[n].Dad = tree[m].Dad = (ush)nod
[all...]
H A Dzutil.h73 typedef unsigned short ush; typedef
74 typedef ush FAR ushf;
H A Ddeflate.c148 ush good_length; /* reduce lazy search above this match length */
149 ush max_lazy; /* do not perform lazy search above this match length */
150 ush nice_length; /* quit search above this match length */
151 ush max_chain;
317 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
319 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
328 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
329 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
435 strm->state->bi_buf = (ush)(value & ((1 << bits) - 1));
947 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)
[all...]

Completed in 38 milliseconds