Lines Matching defs:ulg
50 typedef unsigned long ulg;
244 ulg window_size;
365 ulg opt_len; /* bit length of current block with optimal trees */
366 ulg static_len; /* bit length of current block with static trees */
367 ulg compressed_len; /* total bit length of compressed file */
372 ulg bits_sent; /* bit length of the compressed data */
410 local ulg ct_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
413 local void ct_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
905 s->window_size = (ulg)2L*s->w_size;
978 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1118 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1629 s->bits_sent += (ulg)length;
1885 s->opt_len += (ulg)f * (bits + xbits);
1886 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
2227 ulg stored_len; /* length of input block */
2281 local ulg ct_flush_block(s, buf, stored_len, flush)
2284 ulg stored_len; /* length of input block */
2287 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2428 ulg out_length = (ulg)s->last_lit*8L;
2429 ulg in_length = (ulg)s->strstart - s->block_start;
2432 out_length += (ulg)s->dyn_dtree[dcode].Freq *
2589 s->bits_sent += (ulg)len<<3;