Symbol: ulg
arch/alpha/boot/misc.c
123
ulg c = crc;
arch/alpha/boot/misc.c
134
bytes_out += (ulg)outcnt;
arch/alpha/boot/misc.c
135
output_ptr += (ulg)outcnt;
arch/alpha/boot/misc.c
160
free_mem_ptr = (ulg)output_start + ksize;
arch/alpha/boot/misc.c
161
free_mem_end_ptr = (ulg)output_start + ksize + 0x200000;
arch/alpha/boot/misc.c
88
static ulg output_ptr;
arch/alpha/boot/misc.c
89
static ulg bytes_out;
arch/alpha/boot/misc.c
94
static ulg free_mem_ptr;
arch/alpha/boot/misc.c
95
static ulg free_mem_end_ptr;
arch/nios2/boot/compressed/misc.c
135
ulg c = crc; /* temporary variable */
arch/nios2/boot/compressed/misc.c
146
bytes_out += (ulg)outcnt;
arch/nios2/boot/compressed/misc.c
147
output_ptr += (ulg)outcnt;
lib/inflate.c
1040
register ulg b; /* bit buffer */
lib/inflate.c
1137
static ulg crc_32_tab[256];
lib/inflate.c
1138
static ulg crc; /* initialized in makecrc() so it'll reside in bss */
lib/inflate.c
1179
crc = (ulg)0xffffffffUL; /* shift register contents */
lib/inflate.c
1199
ulg orig_crc = 0; /* original crc */
lib/inflate.c
1200
ulg orig_len = 0; /* original uncompressed length */
lib/inflate.c
1282
orig_crc = (ulg) NEXTBYTE();
lib/inflate.c
1283
orig_crc |= (ulg) NEXTBYTE() << 8;
lib/inflate.c
1284
orig_crc |= (ulg) NEXTBYTE() << 16;
lib/inflate.c
1285
orig_crc |= (ulg) NEXTBYTE() << 24;
lib/inflate.c
1287
orig_len = (ulg) NEXTBYTE();
lib/inflate.c
1288
orig_len |= (ulg) NEXTBYTE() << 8;
lib/inflate.c
1289
orig_len |= (ulg) NEXTBYTE() << 16;
lib/inflate.c
1290
orig_len |= (ulg) NEXTBYTE() << 24;
lib/inflate.c
224
STATIC ulg bb; /* bit buffer */
lib/inflate.c
234
#define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
lib/inflate.c
603
register ulg b; /* bit buffer */
lib/inflate.c
709
register ulg b; /* bit buffer */
lib/inflate.c
845
register ulg b; /* bit buffer */
lib/zlib_deflate/deflate.c
266
s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
lib/zlib_deflate/deflate.c
531
s->window_size = (ulg)2L*s->w_size;
lib/zlib_deflate/deflate.c
608
Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
lib/zlib_deflate/deflate.c
750
more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
lib/zlib_deflate/deflate.c
838
(ulg)((long)s->strstart - s->block_start), \
lib/zlib_deflate/deflate.c
868
ulg max_block_size = 0xffff;
lib/zlib_deflate/deflate.c
869
ulg max_start;
lib/zlib_deflate/deflate.c
895
if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
lib/zlib_deflate/deftree.c
1053
s->bits_sent += (ulg)len<<3;
lib/zlib_deflate/deftree.c
391
s->opt_len += (ulg)f * (bits + xbits);
lib/zlib_deflate/deftree.c
392
if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
lib/zlib_deflate/deftree.c
741
ulg stored_len, /* length of input block */
lib/zlib_deflate/deftree.c
746
s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
lib/zlib_deflate/deftree.c
802
ulg zlib_tr_flush_block(
lib/zlib_deflate/deftree.c
805
ulg stored_len, /* length of input block */
lib/zlib_deflate/deftree.c
809
ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
lib/zlib_deflate/deftree.c
941
ulg out_length = (ulg)s->last_lit*8L;
lib/zlib_deflate/deftree.c
942
ulg in_length = (ulg)((long)s->strstart - s->block_start);
lib/zlib_deflate/deftree.c
945
out_length += (ulg)s->dyn_dtree[dcode].Freq *
lib/zlib_deflate/defutil.h
101
ulg window_size;
lib/zlib_deflate/defutil.h
222
ulg opt_len; /* bit length of current block with optimal trees */
lib/zlib_deflate/defutil.h
223
ulg static_len; /* bit length of current block with static trees */
lib/zlib_deflate/defutil.h
224
ulg compressed_len; /* total bit length of compressed file */
lib/zlib_deflate/defutil.h
229
ulg bits_sent; /* bit length of the compressed data */
lib/zlib_deflate/defutil.h
276
ulg zlib_tr_flush_block (deflate_state *s, char *buf, ulg stored_len,
lib/zlib_deflate/defutil.h
279
void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,
lib/zlib_deflate/defutil.h
371
s->bits_sent += (ulg)length;
lib/zlib_deflate/defutil.h
77
ulg pending_buf_size; /* size of pending_buf */