Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/lib/zlib/
H A Ddeflate.h98 ulg pending_buf_size; /* size of pending_buf */
123 ulg window_size;
244 ulg opt_len; /* bit length of current block with optimal trees */
245 ulg static_len; /* bit length of current block with static trees */
250 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
251 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
263 ulg high_water;
296 ulg stored_len, int last));
299 ulg stored_len, int last));
H A Dtrees.c200 s->bits_sent += (ulg)length;
531 s->opt_len += (ulg)f * (bits + xbits);
532 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
874 ulg stored_len; /* length of input block */
879 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
928 ulg stored_len; /* length of input block */
931 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1052 ulg out_length = (ulg)s->last_lit*8L;
1053 ulg in_length = (ulg)((long)s->strstart - s->block_start);
1056 out_length += (ulg)s->dyn_dtree[dcode].Freq *
[all …]
H A Ddeflate.c291 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1023 s->window_size = (ulg)2L*s->w_size;
1106 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1224 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1312 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1403 ulg curr = s->strstart + (ulg)(s->lookahead);
1404 ulg init;
1416 else if (s->high_water < (ulg)curr + WIN_INIT) {
1421 init = (ulg)curr + WIN_INIT - s->high_water;
1438 (ulg)((long)s->strstart - s->block_start), \
[all …]
H A Dzutil.h51 typedef unsigned long ulg; typedef