ulg                88 arch/alpha/boot/misc.c static ulg output_ptr;
ulg                89 arch/alpha/boot/misc.c static ulg bytes_out;
ulg                96 arch/alpha/boot/misc.c static ulg free_mem_ptr;
ulg                97 arch/alpha/boot/misc.c static ulg free_mem_end_ptr;
ulg               125 arch/alpha/boot/misc.c 	ulg c = crc;
ulg               136 arch/alpha/boot/misc.c 	bytes_out += (ulg)outcnt;
ulg               137 arch/alpha/boot/misc.c 	output_ptr += (ulg)outcnt;
ulg               162 arch/alpha/boot/misc.c 	free_mem_ptr		= (ulg)output_start + ksize;
ulg               163 arch/alpha/boot/misc.c 	free_mem_end_ptr	= (ulg)output_start + ksize + 0x200000;
ulg               135 arch/nios2/boot/compressed/misc.c 	ulg c = crc;	/* temporary variable */
ulg               146 arch/nios2/boot/compressed/misc.c 	bytes_out += (ulg)outcnt;
ulg               147 arch/nios2/boot/compressed/misc.c 	output_ptr += (ulg)outcnt;
ulg               224 lib/inflate.c  STATIC ulg bb;                         /* bit buffer */
ulg               234 lib/inflate.c  #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
ulg               603 lib/inflate.c    register ulg b;       /* bit buffer */
ulg               709 lib/inflate.c    register ulg b;       /* bit buffer */
ulg               845 lib/inflate.c    register ulg b;       /* bit buffer */
ulg              1040 lib/inflate.c    register ulg b;       /* bit buffer */
ulg              1137 lib/inflate.c  static ulg crc_32_tab[256];
ulg              1138 lib/inflate.c  static ulg crc;		/* initialized in makecrc() so it'll reside in bss */
ulg              1179 lib/inflate.c    crc = (ulg)0xffffffffUL; /* shift register contents */
ulg              1199 lib/inflate.c      ulg orig_crc = 0;       /* original crc */
ulg              1200 lib/inflate.c      ulg orig_len = 0;       /* original uncompressed length */
ulg              1284 lib/inflate.c      orig_crc = (ulg) NEXTBYTE();
ulg              1285 lib/inflate.c      orig_crc |= (ulg) NEXTBYTE() << 8;
ulg              1286 lib/inflate.c      orig_crc |= (ulg) NEXTBYTE() << 16;
ulg              1287 lib/inflate.c      orig_crc |= (ulg) NEXTBYTE() << 24;
ulg              1289 lib/inflate.c      orig_len = (ulg) NEXTBYTE();
ulg              1290 lib/inflate.c      orig_len |= (ulg) NEXTBYTE() << 8;
ulg              1291 lib/inflate.c      orig_len |= (ulg) NEXTBYTE() << 16;
ulg              1292 lib/inflate.c      orig_len |= (ulg) NEXTBYTE() << 24;
ulg               240 lib/zlib_deflate/deflate.c     s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
ulg               523 lib/zlib_deflate/deflate.c     s->window_size = (ulg)2L*s->w_size;
ulg               600 lib/zlib_deflate/deflate.c     Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
ulg               743 lib/zlib_deflate/deflate.c         more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
ulg               831 lib/zlib_deflate/deflate.c 		(ulg)((long)s->strstart - s->block_start), \
ulg               861 lib/zlib_deflate/deflate.c     ulg max_block_size = 0xffff;
ulg               862 lib/zlib_deflate/deflate.c     ulg max_start;
ulg               888 lib/zlib_deflate/deflate.c         if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
ulg               187 lib/zlib_deflate/deftree.c     s->bits_sent += (ulg)length;
ulg               445 lib/zlib_deflate/deftree.c         s->opt_len += (ulg)f * (bits + xbits);
ulg               446 lib/zlib_deflate/deftree.c         if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
ulg               795 lib/zlib_deflate/deftree.c 	ulg stored_len,   /* length of input block */
ulg               800 lib/zlib_deflate/deftree.c     s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
ulg               856 lib/zlib_deflate/deftree.c ulg zlib_tr_flush_block(
ulg               859 lib/zlib_deflate/deftree.c 	ulg stored_len,   /* length of input block */
ulg               863 lib/zlib_deflate/deftree.c     ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
ulg               995 lib/zlib_deflate/deftree.c         ulg out_length = (ulg)s->last_lit*8L;
ulg               996 lib/zlib_deflate/deftree.c         ulg in_length = (ulg)((long)s->strstart - s->block_start);
ulg               999 lib/zlib_deflate/deftree.c             out_length += (ulg)s->dyn_dtree[dcode].Freq *
ulg              1107 lib/zlib_deflate/deftree.c     s->bits_sent += (ulg)len<<3;
ulg                75 lib/zlib_deflate/defutil.h     ulg   pending_buf_size; /* size of pending_buf */
ulg                99 lib/zlib_deflate/defutil.h     ulg window_size;
ulg               220 lib/zlib_deflate/defutil.h     ulg opt_len;        /* bit length of current block with optimal trees */
ulg               221 lib/zlib_deflate/defutil.h     ulg static_len;     /* bit length of current block with static trees */
ulg               222 lib/zlib_deflate/defutil.h     ulg compressed_len; /* total bit length of compressed file */
ulg               227 lib/zlib_deflate/defutil.h     ulg bits_sent;      /* bit length of the compressed data */
ulg               278 lib/zlib_deflate/defutil.h ulg  zlib_tr_flush_block  (deflate_state *s, char *buf, ulg stored_len,
ulg               281 lib/zlib_deflate/defutil.h void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,