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

/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.h125 ulg pending_buf_size; /* size of pending_buf */
150 ulg window_size;
271 ulg opt_len; /* bit length of current block with optimal trees */
272 ulg static_len; /* bit length of current block with static trees */
277 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
278 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
311 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
314 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
H A Dtrees.c226 s->bits_sent += (ulg)length;
554 s->opt_len += (ulg)f * (bits + xbits);
555 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
897 ulg stored_len; /* length of input block */
902 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
951 ulg stored_len; /* length of input block */
954 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1075 ulg out_length = (ulg)s->last_lit*8L;
1076 ulg in_lengt
[all...]
H A Dzutil.c247 ulg bsize = (ulg)items*size;
H A Ddeflate.c324 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1018 s->window_size = (ulg)2L*s->w_size;
1101 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1218 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1304 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1397 (ulg)((long)s->strstart - s->block_start), \
1426 ulg max_block_size = 0xffff;
1427 ulg max_start;
1453 if (s->strstart == 0 || (ulg)
[all...]
H A Dzutil.h90 typedef unsigned long ulg; typedef

Completed in 76 milliseconds