Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/
H A Ddeflate.h108 ulg pending_buf_size; /* size of pending_buf */
110 ulg pending; /* nb of bytes in the pending buffer */
113 ulg gzindex; /* where in extra, name, or comment */
133 ulg window_size;
256 ulg opt_len; /* bit length of current block with optimal trees */
257 ulg static_len; /* bit length of current block with static trees */
262 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
263 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
275 ulg high_water;
308 ulg stored_len, int last);
[all …]
H A Ddeflate.c259 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
340 ulg curr = s->strstart + (ulg)(s->lookahead); in fill_window()
341 ulg init; in fill_window()
353 else if (s->high_water < (ulg)curr + WIN_INIT) { in fill_window()
358 init = (ulg)curr + WIN_INIT - s->high_water; in fill_window()
366 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD, in fill_window()
497 s->pending_buf_size = (ulg)s->lit_bufsize * 4; in deflateInit2_()
674 s->window_size = (ulg)2L*s->w_size; in lm_init()
1084 ulg beg = s->pending; /* start of bytes to update crc */ in deflate()
1111 ulg beg = s->pending; /* start of bytes to update crc */ in deflate()
[all …]
H A Dtrees.c255 s->bits_sent += (ulg)length; in send_bits()
572 s->opt_len += (ulg)f * (unsigned)(bits + xbits); in gen_bitlen()
573 if (stree) s->static_len += (ulg)f * (unsigned)(stree[n].Len + xbits); in gen_bitlen()
605 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq; in gen_bitlen()
819 s->opt_len += 3*((ulg)max_blindex + 1) + 5 + 5 + 4; in build_bl_tree()
859 ulg stored_len, int last) { in _tr_stored_block()
868 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; in _tr_stored_block()
996 ulg stored_len, int last) {
997 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
H A Dzutil.c204 ulg bsize = (ulg)items*size; in zcalloc()
H A Dzutil.h43 typedef unsigned long ulg; typedef