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

/linux-4.4.14/arch/alpha/boot/
H A Dmisc.c39 typedef unsigned long ulg; typedef
87 static ulg output_ptr;
88 static ulg bytes_out;
95 static ulg free_mem_ptr;
96 static ulg free_mem_end_ptr;
124 ulg c = crc; flush_window()
135 bytes_out += (ulg)outcnt; flush_window()
136 output_ptr += (ulg)outcnt; flush_window()
161 free_mem_ptr = (ulg)output_start + ksize; decompress_kernel()
162 free_mem_end_ptr = (ulg)output_start + ksize + 0x200000; decompress_kernel()
/linux-4.4.14/arch/mn10300/boot/compressed/
H A Dmisc.c83 typedef unsigned long ulg; typedef
165 static uch *high_buffer_start /* = (uch *)(((ulg)&end) + HEAP_SIZE)*/;
261 ulg c = crc; /* temporary variable */ flush_window_low()
272 bytes_out += (ulg)outcnt; flush_window_low()
273 output_ptr += (ulg)outcnt; flush_window_low()
279 ulg c = crc; /* temporary variable */ flush_window_high()
285 if ((ulg) output_data == LOW_BUFFER_END) flush_window_high()
290 bytes_out += (ulg)outcnt; flush_window_high()
342 high_buffer_start = (uch *)(((ulg) &end) + HEAP_SIZE); setup_output_buffer_if_we_run_high()
353 if (0x100000 + LOW_BUFFER_SIZE > (ulg) high_buffer_start) { setup_output_buffer_if_we_run_high()
/linux-4.4.14/arch/nios2/boot/compressed/
H A Dmisc.c44 typedef unsigned long ulg; typedef
148 ulg c = crc; /* temporary variable */ flush_window()
159 bytes_out += (ulg)outcnt; flush_window()
160 output_ptr += (ulg)outcnt; flush_window()
/linux-4.4.14/lib/zlib_deflate/
H A Ddefutil.h75 ulg pending_buf_size; /* size of pending_buf */
99 ulg window_size;
220 ulg opt_len; /* bit length of current block with optimal trees */
221 ulg static_len; /* bit length of current block with static trees */
222 ulg compressed_len; /* total bit length of compressed file */
227 ulg bits_sent; /* bit length of the compressed data */
278 ulg zlib_tr_flush_block (deflate_state *s, char *buf, ulg stored_len,
281 void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,
H A Ddeftree.c187 s->bits_sent += (ulg)length; send_bits()
445 s->opt_len += (ulg)f * (bits + xbits); gen_bitlen()
446 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits); gen_bitlen()
795 ulg stored_len, /* length of input block */ zlib_tr_stored_block()
800 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; zlib_tr_stored_block()
856 ulg zlib_tr_flush_block(
859 ulg stored_len, /* length of input block */
863 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
995 ulg out_length = (ulg)s->last_lit*8L; zlib_tr_tally()
996 ulg in_length = (ulg)((long)s->strstart - s->block_start); zlib_tr_tally()
999 out_length += (ulg)s->dyn_dtree[dcode].Freq * zlib_tr_tally()
1107 s->bits_sent += (ulg)len<<3; copy_block()
H A Ddeflate.c240 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L); zlib_deflateInit2()
523 s->window_size = (ulg)2L*s->w_size; lm_init()
600 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); longest_match()
743 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); fill_window()
831 (ulg)((long)s->strstart - s->block_start), \
861 ulg max_block_size = 0xffff; deflate_stored()
862 ulg max_start; deflate_stored()
888 if (s->strstart == 0 || (ulg)s->strstart >= max_start) { deflate_stored()
/linux-4.4.14/arch/cris/boot/compressed/
H A Dmisc.c49 typedef unsigned long ulg; typedef
201 ulg c = crc; /* temporary variable */ flush_window()
214 bytes_out += (ulg)outcnt; flush_window()
215 output_ptr += (ulg)outcnt; flush_window()
/linux-4.4.14/lib/
H A Dinflate.c223 STATIC ulg bb; /* bit buffer */
233 #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
313 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
602 register ulg b; /* bit buffer */ inflate_codes()
708 register ulg b; /* bit buffer */ inflate_stored()
844 register ulg b; /* bit buffer */ inflate_dynamic()
1039 register ulg b; /* bit buffer */
1136 static ulg crc_32_tab[256];
1137 static ulg crc; /* initialized in makecrc() so it'll reside in bss */
1178 crc = (ulg)0xffffffffUL; /* shift register contents */
1198 ulg orig_crc = 0; /* original crc */
1199 ulg orig_len = 0; /* original uncompressed length */
1283 orig_crc = (ulg) NEXTBYTE();
1284 orig_crc |= (ulg) NEXTBYTE() << 8;
1285 orig_crc |= (ulg) NEXTBYTE() << 16;
1286 orig_crc |= (ulg) NEXTBYTE() << 24;
1288 orig_len = (ulg) NEXTBYTE();
1289 orig_len |= (ulg) NEXTBYTE() << 8;
1290 orig_len |= (ulg) NEXTBYTE() << 16;
1291 orig_len |= (ulg) NEXTBYTE() << 24;
/linux-4.4.14/include/linux/
H A Dzutil.h22 typedef unsigned long ulg; typedef

Completed in 322 milliseconds