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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h122 ulg pending_buf_size; /* size of pending_buf */
147 ulg window_size;
268 ulg opt_len; /* bit length of current block with optimal trees */
269 ulg static_len; /* bit length of current block with static trees */
274 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
275 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
308 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
311 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
H A Dtrees.c223 s->bits_sent += (ulg)length;
551 s->opt_len += (ulg)f * (bits + xbits);
552 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
894 ulg stored_len; /* length of input block */
899 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
948 ulg stored_len; /* length of input block */
951 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1072 ulg out_length = (ulg)s->last_lit*8L;
1073 ulg in_lengt
[all...]
H A Dzutil.c243 ulg bsize = (ulg)items*size;
H A Ddeflate.c319 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1013 s->window_size = (ulg)2L*s->w_size;
1096 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1213 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1299 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1392 (ulg)((long)s->strstart - s->block_start), \
1421 ulg max_block_size = 0xffff;
1422 ulg max_start;
1448 if (s->strstart == 0 || (ulg)
[all...]
H A Dzutil.h75 typedef unsigned long ulg; typedef

Completed in 40 milliseconds