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

/linux-master/arch/alpha/boot/
H A Dmisc.c40 typedef unsigned long ulg; typedef
88 static ulg output_ptr;
89 static ulg bytes_out;
94 static ulg free_mem_ptr;
95 static ulg free_mem_end_ptr;
123 ulg c = crc;
134 bytes_out += (ulg)outcnt;
135 output_ptr += (ulg)outcnt;
160 free_mem_ptr = (ulg)output_start + ksize;
161 free_mem_end_ptr = (ulg)output_star
[all...]
/linux-master/lib/zlib_deflate/
H A Ddefutil.h77 ulg pending_buf_size; /* size of pending_buf */
101 ulg window_size;
222 ulg opt_len; /* bit length of current block with optimal trees */
223 ulg static_len; /* bit length of current block with static trees */
224 ulg compressed_len; /* total bit length of compressed file */
229 ulg bits_sent; /* bit length of the compressed data */
276 ulg zlib_tr_flush_block (deflate_state *s, char *buf, ulg stored_len,
279 void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,
371 s->bits_sent += (ulg)lengt
[all...]
H A Ddeftree.c391 s->opt_len += (ulg)f * (bits + xbits);
392 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
741 ulg stored_len, /* length of input block */
746 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
802 ulg zlib_tr_flush_block(
805 ulg stored_len, /* length of input block */
809 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
941 ulg out_length = (ulg)s->last_lit*8L;
942 ulg in_lengt
[all...]
H A Ddeflate.c269 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
534 s->window_size = (ulg)2L*s->w_size;
611 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
754 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
842 (ulg)((long)s->strstart - s->block_start), \
872 ulg max_block_size = 0xffff;
873 ulg max_start;
899 if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
/linux-master/arch/nios2/boot/compressed/
H A Dmisc.c31 typedef unsigned long ulg; typedef
135 ulg c = crc; /* temporary variable */
146 bytes_out += (ulg)outcnt;
147 output_ptr += (ulg)outcnt;
/linux-master/lib/
H A Dinflate.c224 STATIC ulg bb; /* bit buffer */
234 #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
314 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
603 register ulg b; /* bit buffer */
709 register ulg b; /* bit buffer */
845 register ulg b; /* bit buffer */
1040 register ulg b; /* bit buffer */
1137 static ulg crc_32_tab[256];
1138 static ulg crc; /* initialized in makecrc() so it'll reside in bss */
1179 crc = (ulg)
[all...]
/linux-master/include/linux/
H A Dzutil.h22 typedef unsigned long ulg; typedef

Completed in 328 milliseconds