Lines Matching defs:uLong
396 typedef unsigned long uLong; /* 32 bits or more */
407 typedef uLong FAR uLongf;
508 uLong total_in; /* total nb of input bytes read so far */
512 uLong total_out; /* total nb of bytes output so far */
522 uLong adler; /* adler32 value of the uncompressed data */
523 uLong reserved; /* reserved for future use */
1161 uLong ZEXPORT adler32(adler, buf, len)
1162 uLong adler;
3641 uLong crc; /* crc32 of uncompressed data */
3664 local uLong getLong OF((gz_stream *s));
4105 local uLong getLong (s)
4108 uLong x = (uLong)get_byte(s);
4111 x += ((uLong)get_byte(s))<<8;
4112 x += ((uLong)get_byte(s))<<16;
4115 x += ((uLong)c)<<24;