Lines Matching defs:ulg

102 typedef unsigned long  ulg;
356 ulg pending_buf_size; /* size of pending_buf */
380 ulg window_size;
501 ulg opt_len; /* bit length of current block with optimal trees */
502 ulg static_len; /* bit length of current block with static trees */
503 ulg compressed_len; /* total bit length of compressed file */
508 ulg bits_sent; /* bit length of the compressed data */
541 ulg _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
544 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
814 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1245 s->window_size = (ulg)2L*s->w_size;
1325 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1466 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1555 (ulg)((long)s->strstart - s->block_start), \
1584 ulg max_block_size = 0xffff;
1585 ulg max_start;
1611 if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
2036 s->bits_sent += (ulg)length;
2292 s->opt_len += (ulg)f * (bits + xbits);
2293 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
2634 ulg stored_len; /* length of input block */
2638 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
2692 ulg _tr_flush_block(s, buf, stored_len, eof)
2695 ulg stored_len; /* length of input block */
2698 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2829 ulg out_length = (ulg)s->last_lit*8L;
2830 ulg in_length = (ulg)((long)s->strstart - s->block_start);
2833 out_length += (ulg)s->dyn_dtree[dcode].Freq *
2990 s->bits_sent += (ulg)len<<3;
5245 ulg bsize = (ulg)items*size;