Searched refs:uLong (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Duncompr.c54 uLong sourceLen;
62 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
66 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
81 *destLen = (uLong)stream.total_out;
H A Dcompress.c50 uLong sourceLen;
60 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
64 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
90 uLong sourceLen;
99 uLong ZEXPORT compressBound (sourceLen)
100 uLong sourceLen;
H A Dzlib.h109 uLong total_in; /* total nb of input bytes read so far */
113 uLong total_out; /* total nb of bytes output so far */
123 uLong adler; /* adler32 value of the uncompressed data */
124 uLong reserved; /* reserved for future use */
135 uLong time; /* modification time */
668 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
669 uLong sourceLen));
981 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
986 3.2: size of uLong
1034 const Bytef *source, uLong sourceLe
[all...]
H A Dzadler32.c81 uLong ZEXPORT adler32(adler, buf, len)
82 uLong adler;
152 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
153 uLong adler1;
154 uLong adler2;
H A Dzcrc32.c243 uLong ZEXPORT crc32(crc, buf, len)
244 uLong crc;
261 return (uLong)crc32_little(crc, buf, len);
263 return (uLong)crc32_big(crc, buf, len);
394 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
395 uLong crc1;
396 uLong crc2;
H A Dzconf.h79 # define uLong z_uLong macro
292 typedef unsigned int uLong; /* 32 bits or more */ typedef
294 typedef unsigned long uLong; /* 32 bits or more */ typedef
306 typedef uLong FAR uLongf;
H A Dzutil.c56 uLong ZEXPORT zlibCompileFlags()
58 uLong flags;
67 switch (sizeof(uLong)) {
H A Dgzio.c87 uLong crc; /* crc32 of uncompressed data */
105 local void putLong OF((FILE *file, uLong x));
106 local uLong getLong OF((gz_stream *s));
946 uLong x;
959 local uLong getLong (s)
962 uLong x = (uLong)get_byte(s);
965 x += ((uLong)get_byte(s))<<8;
966 x += ((uLong)get_byte(s))<<16;
969 x += ((uLong)
[all...]
H A Ddeflate.c513 uLong ZEXPORT deflateBound(strm, sourceLen)
515 uLong sourceLen;
518 uLong destLen;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.h39 uLong dostime_cache;
74 int len, int clen, uLong crc);
78 uLong dostime(int y, int n, int d, int h, int m, int s);
79 uLong get_dostime(int modtime);
H A Ddefines.h98 typedef unsigned int uLong; // Historical zlib, should be 32-bit. typedef
100 typedef unsigned long uLong; typedef
H A Dzip.cpp100 int len, int clen, uLong crc) {
104 uLong dostime = get_dostime(modtime);
166 uLong dostime = get_dostime(modtime);
319 uLong jar::dostime(int y, int n, int d, int h, int m, int s) {
321 (((uLong)y - 1980) << 25) | ((uLong)n << 21) | ((uLong)d << 16) |
322 ((uLong)h << 11) | ((uLong)m << 5) | ((uLong)
[all...]

Completed in 1277 milliseconds