HomeSort by: relevance | last modified time | path
    Searched refs:ulg (Results 1 - 6 of 6) sorted by relevancy

  /src/common/dist/zlib/
deflate.h 110 ulg pending_buf_size; /* size of pending_buf */
112 ulg pending; /* nb of bytes in the pending buffer */
115 ulg gzindex; /* where in extra, name, or comment */
135 ulg window_size;
258 ulg opt_len; /* bit length of current block with optimal trees */
259 ulg static_len; /* bit length of current block with static trees */
264 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
265 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
277 ulg high_water;
310 ulg stored_len, int last)
    [all...]
zutil.c 206 ulg bsize = (ulg)items*size;
trees.c 257 s->bits_sent += (ulg)length;
574 s->opt_len += (ulg)f * (unsigned)(bits + xbits);
575 if (stree) s->static_len += (ulg)f * (unsigned)(stree[n].Len + xbits);
607 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
821 s->opt_len += 3*((ulg)max_blindex + 1) + 5 + 5 + 4;
861 ulg stored_len, int last) {
870 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
998 ulg stored_len, int last) {
999 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
deflate.c 261 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
342 ulg curr = s->strstart + (ulg)(s->lookahead);
343 ulg init;
355 else if (s->high_water < (ulg)curr + WIN_INIT) {
360 init = (ulg)curr + WIN_INIT - s->high_water;
368 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
499 s->pending_buf_size = (ulg)s->lit_bufsize * 4;
676 s->window_size = (ulg)2L*s->w_size
    [all...]
zutil.h 49 typedef unsigned long ulg; typedef in typeref:typename:unsigned long
  /src/sys/net/
zlib.c 100 typedef unsigned long ulg; typedef in typeref:typename:unsigned long
372 ulg pending_buf_size; /* size of pending_buf */
396 ulg window_size;
517 ulg opt_len; /* bit length of current block with optimal trees */
518 ulg static_len; /* bit length of current block with static trees */
523 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
524 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
557 void _tr_flush_block(deflate_state *s, charf *buf, ulg stored_len,
560 void _tr_stored_block(deflate_state *s, charf *buf, ulg stored_len,
877 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L)
    [all...]

Completed in 15 milliseconds