Home
last modified time | relevance | path

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

/u-boot/lib/zlib/
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));
A Dtrees.c201 s->bits_sent += (ulg)length;
532 s->opt_len += (ulg)f * (bits + xbits);
533 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
875 ulg stored_len; /* length of input block */
880 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
929 ulg stored_len; /* length of input block */
932 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1053 ulg out_length = (ulg)s->last_lit*8L;
1054 ulg in_length = (ulg)((long)s->strstart - s->block_start);
1057 out_length += (ulg)s->dyn_dtree[dcode].Freq *
[all …]
A Ddeflate.c292 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1024 s->window_size = (ulg)2L*s->w_size;
1313 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1404 ulg curr = s->strstart + (ulg)(s->lookahead);
1405 ulg init;
1417 else if (s->high_water < (ulg)curr + WIN_INIT) {
1422 init = (ulg)curr + WIN_INIT - s->high_water;
1439 (ulg)((long)s->strstart - s->block_start), \
1468 ulg max_block_size = 0xffff;
1469 ulg max_start;
[all …]
A Dzutil.h51 typedef unsigned long ulg; typedef

Completed in 36 milliseconds