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

12

/freebsd-10.0-release/lib/libz/
H A Dcompress.c26 uLong sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
66 uLong sourceLen;
75 uLong ZEXPORT compressBound (sourceLen)
76 uLong sourceLen;
H A Dzlib.h88 uLong total_in; /* total number of input bytes read so far */
92 uLong total_out; /* total number of bytes output so far */
102 uLong adler; /* adler32 value of the uncompressed data */
103 uLong reserved; /* reserved for future use */
114 uLong time; /* modification time */
698 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
699 uLong sourceLen));
1107 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
1112 3.2: size of uLong
1161 const Bytef *source, uLong sourceLe
[all...]
H A Dadler32.c12 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
65 uLong ZEXPORT adler32(adler, buf, len)
66 uLong adler;
136 local uLong adler32_combine_(adler1, adler2, len2)
137 uLong adler1;
138 uLong adler2;
165 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
166 uLong adler
[all...]
H A Duncompr.c28 uLong sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dcrc32.c53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
355 local uLong crc32_combine_(crc1, crc2, len2)
356 uLong crc1;
357 uLong crc2;
411 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
412 uLong crc1;
413 uLong crc2;
419 uLong ZEXPOR
[all...]
H A Dzutil.h173 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
174 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
H A Dzutil.c35 uLong ZEXPORT zlibCompileFlags()
37 uLong flags;
46 switch ((int)(sizeof(uLong))) {
H A Dzconf.h143 # define uLong z_uLong macro
371 typedef unsigned long uLong; /* 32 bits or more */ typedef
382 typedef uLong FAR uLongf;
H A Ddeflate.c566 uLong ZEXPORT deflateBound(strm, sourceLen)
568 uLong sourceLen;
571 uLong complen, wraplen;
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */
91 uLong total_out; /* total nb of bytes output so far */
101 uLong adler; /* adler32 value of the uncompressed data */
102 uLong reserved; /* reserved for future use */
113 uLong time; /* modification time */
646 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
647 uLong sourceLen));
959 ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void));
964 3.2: size of uLong
1012 const Bytef *source, uLong sourceLe
[all...]
H A Dzconf.h103 typedef unsigned long uLong; typedef
108 typedef uLong uLongf;
H A Dadler32.c57 uLong ZEXPORT adler32(adler, buf, len)
58 uLong adler;
128 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
129 uLong adler1;
130 uLong adler2;
H A Dzutil.c37 uLong ZEXPORT zlibCompileFlags()
39 uLong flags;
48 switch (sizeof(uLong)) {
H A Dopensolaris_crc32.c375 uLong ZEXPORT crc32_combine(crc1, crc2, len2)
376 uLong crc1;
377 uLong crc2;
/freebsd-10.0-release/sys/net/
H A Dzlib.h99 # define uLong z_uLong macro
214 typedef unsigned long uLong; /* 32 bits or more */ typedef
225 typedef uLong FAR uLongf;
281 uLong total_in; /* total nb of input bytes read so far */
285 uLong total_out; /* total nb of bytes output so far */
295 uLong adler; /* adler32 value of the uncompressed data */
296 uLong reserved; /* reserved for future use */
838 const Bytef *source, uLong sourceLen));
853 const Bytef *source, uLong sourceLen));
947 extern uLong EXPOR
[all...]
H A Dzutil.h221 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
H A Dzlib.c257 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
3082 uLong was; /* computed check value */
3083 uLong need; /* stream check value */
3100 uLong c;
3116 uLong c;
3248 z->state->sub.check.need = (uLong)NEXTBYTE << 24;
3252 z->state->sub.check.need += (uLong)NEXTBYTE << 16;
3256 z->state->sub.check.need += (uLong)NEXTBYTE << 8;
3260 z->state->sub.check.need += (uLong)NEXTBYT
[all...]
/freebsd-10.0-release/lib/libz/test/
H A Dexample.c35 uLong dictId; /* Adler32 value of the dictionary */
37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
39 Byte *uncompr, uLong uncomprLen));
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
41 Byte *uncompr, uLong uncomprLen));
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
43 Byte *uncompr, uLong uncomprLen));
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLe
[all...]
/freebsd-10.0-release/tools/tools/net80211/w00t/libw00t/
H A Dw00t.c310 uLong crc = crc32(0L, Z_NULL, 0);
311 uLong *pcrc;
325 pcrc = (uLong*) (p+len-4);
338 uLong crc = crc32(0L, Z_NULL, 0);
339 uLong *pcrc;
350 pcrc = (uLong*) (p+len-4);
/freebsd-10.0-release/tools/tools/net80211/w00t/prga/
H A Dprga.c264 uLong *pcrc;
265 uLong crc = crc32(0L, Z_NULL, 0);
308 pcrc = (uLong*) (ptr+dlen);
410 uLong crc = crc32(0L, Z_NULL, 0);
411 uLong *pcrc;
469 pcrc = (uLong*) &p->data[p->data_len]; /* XXX overflow ph33r */
514 uLong *pcrc;
515 uLong crc = crc32(0L, Z_NULL, 0);
552 pcrc = (uLong*) (ptr+rc);
/freebsd-10.0-release/tools/tools/net80211/w00t/expand/
H A Dexpand.c186 uLong crc = crc32(0L, Z_NULL, 0);
187 uLong *pcrc;
257 pcrc = (uLong*) (data+len);
288 pcrc = (uLong*) (data+len);
/freebsd-10.0-release/crypto/openssl/crypto/comp/
H A Dc_zlib.c59 uLong sourceLen);
99 const Bytef *source, uLong sourceLen);
306 uLong sourceLen)
314 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
318 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
/freebsd-10.0-release/tools/tools/net80211/w00t/redir/
H A Dredir.c262 uLong crc = crc32(0L, Z_NULL, 0);
263 uLong *pcrc;
309 pcrc = (uLong*) (ptr+len);
/freebsd-10.0-release/sys/kern/
H A Dkern_gzio.c62 uLong crc; /* crc32 of uncompressed data */
374 printf("sizeof uLong = %d\n", (int)sizeof(uLong));
/freebsd-10.0-release/usr.bin/gzip/
H A Dgzip.c562 uLong crc;
749 uLong crc = 0;
984 uLong origcrc;
1015 uLong origlen;

Completed in 250 milliseconds

12