Searched refs:ulg (Results 1 – 7 of 7) sorted by relevance
/linux/arch/alpha/boot/ |
H A D | misc.c | 40 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; in flush_window() 134 bytes_out += (ulg)outcnt; in flush_window() 135 output_ptr += (ulg)outcnt; in flush_window() 160 free_mem_ptr = (ulg)output_start + ksize; in decompress_kernel() 161 free_mem_end_ptr = (ulg)output_start + ksize + 0x200000; in decompress_kernel()
|
/linux/lib/zlib_deflate/ |
H A D | defutil.h | 77 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)length; in send_bits()
|
H A D | deftree.c | 391 s->opt_len += (ulg)f * (bits + xbits); in gen_bitlen() 392 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits); in gen_bitlen() 741 ulg stored_len, /* length of input block */ in zlib_tr_stored_block() 746 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; in zlib_tr_stored_block() 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_length = (ulg)((long)s->strstart - s->block_start); 945 out_length += (ulg)s->dyn_dtree[dcode].Freq * [all …]
|
H A D | deflate.c | 269 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L); in zlib_deflateInit2() 534 s->window_size = (ulg)2L*s->w_size; in lm_init() 611 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); in longest_match() 754 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window() 842 (ulg)((long)s->strstart - s->block_start), \ 872 ulg max_block_size = 0xffff; in deflate_stored() 873 ulg max_start; in deflate_stored() 899 if (s->strstart == 0 || (ulg)s->strstart >= max_start) { in deflate_stored()
|
/linux/lib/ |
H A D | inflate.c | 603 register ulg b; /* bit buffer */ in inflate_codes() 709 register ulg b; /* bit buffer */ in inflate_stored() 1137 static ulg crc_32_tab[256]; 1284 orig_crc = (ulg) NEXTBYTE(); in gunzip() 1285 orig_crc |= (ulg) NEXTBYTE() << 8; in gunzip() 1286 orig_crc |= (ulg) NEXTBYTE() << 16; in gunzip() 1287 orig_crc |= (ulg) NEXTBYTE() << 24; in gunzip() 1289 orig_len = (ulg) NEXTBYTE(); in gunzip() 1290 orig_len |= (ulg) NEXTBYTE() << 8; in gunzip() 1291 orig_len |= (ulg) NEXTBYTE() << 16; in gunzip() [all …]
|
/linux/arch/nios2/boot/compressed/ |
H A D | misc.c | 31 typedef unsigned long ulg; typedef 135 ulg c = crc; /* temporary variable */ in flush_window() 146 bytes_out += (ulg)outcnt; in flush_window() 147 output_ptr += (ulg)outcnt; in flush_window()
|
/linux/include/linux/ |
H A D | zutil.h | 22 typedef unsigned long ulg; typedef
|