Searched refs:uLong (Results 1 – 10 of 10) sorted by relevance
/titanic_50/usr/src/uts/common/zmod/ |
H A D | zlib.h | 87 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)); 1012 const Bytef *source, uLong sourceLen)); 1027 const Bytef *source, uLong sourceLen, [all …]
|
H A D | adler32.c | 57 uLong ZEXPORT adler32(adler, buf, len) in adler32() 58 uLong adler; in adler32() 128 uLong ZEXPORT adler32_combine(adler1, adler2, len2) in adler32_combine() 129 uLong adler1; in adler32_combine() 130 uLong adler2;
|
H A D | zconf.h | 103 typedef unsigned long uLong; typedef 108 typedef uLong uLongf;
|
H A D | zutil.c | 37 uLong ZEXPORT zlibCompileFlags() in zlibCompileFlags() 39 uLong flags; in zlibCompileFlags() 48 switch (sizeof(uLong)) { in zlibCompileFlags()
|
H A D | crc32.c | 375 uLong ZEXPORT crc32_combine(crc1, crc2, len2) in crc32_combine() 376 uLong crc1; in crc32_combine() 377 uLong crc2;
|
H A D | deflate.c | 495 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() 497 uLong sourceLen; 500 uLong destLen;
|
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.h | 115 typedef unsigned long uLong; /* 32 bits or more */ typedef 121 typedef uLong FAR uLongf; 162 uLong total_in; /* total nb of input bytes read so far */ 166 uLong total_out; /* total nb of bytes output so far */ 610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
|
H A D | zlib.c | 121 typedef uLong (*check_func) OF((uLong check, Bytef *buf, uInt len)); typedef 222 uLong adler; /* adler32 of uncompressed data */ 2755 uLong was; /* computed check value */ 2756 uLong need; /* stream check value */ 2773 uLong c; 2789 uLong c; 2927 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 2931 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 2935 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 2939 z->state->sub.check.need += (uLong)NEXTBYTE; [all …]
|
/titanic_50/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.h | 125 #define uLong z_uLong macro 308 typedef unsigned long uLong; /* 32 bits or more */ typedef 319 typedef uLong FAR uLongf; 407 uLong total_in; /* total nb of input bytes read so far */ 411 uLong total_out; /* total nb of bytes output so far */ 423 uLong adler; /* adler32 value of the uncompressed data */ 424 uLong reserved; /* reserved for future use */ 1133 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
|
H A D | zlib.c | 263 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len)); typedef 3618 uLong was; /* computed check value */ 3619 uLong need; /* stream check value */ 3795 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 3800 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 3805 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 3810 z->state->sub.check.need += (uLong)NEXTBYTE; 3846 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 3851 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 3856 z->state->sub.check.need += (uLong)NEXTBYTE << 8; [all …]
|