Symbol: uLong
common/dist/zlib/adler32.c
128
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
common/dist/zlib/adler32.c
133
local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2) {
common/dist/zlib/adler32.c
158
uLong ZEXPORT adler32_combine(uLong adler1, uLong adler2, z_off_t len2) {
common/dist/zlib/adler32.c
162
uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2) {
common/dist/zlib/adler32.c
61
uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) {
common/dist/zlib/compress.c
100
return (uLong)bound != bound ? (uLong)-1 : (uLong)bound;
common/dist/zlib/compress.c
70
uLong sourceLen, int level) {
common/dist/zlib/compress.c
74
*destLen = (uLong)got;
common/dist/zlib/compress.c
85
uLong sourceLen) {
common/dist/zlib/compress.c
98
uLong ZEXPORT compressBound(uLong sourceLen) {
common/dist/zlib/crc32.c
165
local uLong multmodp(uLong a, uLong b) {
common/dist/zlib/crc32.c
166
uLong m, p;
common/dist/zlib/crc32.c
168
m = (uLong)1 << 31;
common/dist/zlib/crc32.c
186
local uLong x2nmodp(z_off64_t n, unsigned k) {
common/dist/zlib/crc32.c
187
uLong p;
common/dist/zlib/crc32.c
189
p = (uLong)1 << 31; /* x^0 == 1 */
common/dist/zlib/crc32.c
510
uLong ZEXPORT crc32_z(uLong crc, const unsigned char FAR *buf, z_size_t len) {
common/dist/zlib/crc32.c
511
uLong val;
common/dist/zlib/crc32.c
628
uLong ZEXPORT crc32_z(uLong crc, const unsigned char FAR *buf, z_size_t len) {
common/dist/zlib/crc32.c
948
uLong ZEXPORT crc32(uLong crc, const unsigned char FAR *buf, uInt len) {
common/dist/zlib/crc32.c
956
uLong ZEXPORT crc32_combine_gen64(z_off64_t len2) {
common/dist/zlib/crc32.c
966
uLong ZEXPORT crc32_combine_gen(z_off_t len2) {
common/dist/zlib/crc32.c
971
uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
common/dist/zlib/crc32.c
978
uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
common/dist/zlib/crc32.c
983
uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
common/dist/zlib/deflate.c
931
uLong ZEXPORT deflateBound(z_streamp strm, uLong sourceLen) {
common/dist/zlib/deflate.c
933
return (uLong)bound != bound ? (uLong)-1 : (uLong)bound;
common/dist/zlib/test/example.c
172
static void test_deflate(Byte *compr, uLong comprLen) {
common/dist/zlib/test/example.c
175
uLong len = (uLong)strlen(hello)+1;
common/dist/zlib/test/example.c
207
static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
208
uLong uncomprLen) {
common/dist/zlib/test/example.c
246
static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
247
uLong uncomprLen) {
common/dist/zlib/test/example.c
299
static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
300
uLong uncomprLen) {
common/dist/zlib/test/example.c
338
static void test_flush(Byte *compr, uLong *comprLen) {
common/dist/zlib/test/example.c
373
static void test_sync(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
374
uLong uncomprLen) {
common/dist/zlib/test/example.c
41
static uLong dictId; /* Adler32 value of the dictionary */
common/dist/zlib/test/example.c
414
static void test_dict_deflate(Byte *compr, uLong comprLen) {
common/dist/zlib/test/example.c
448
static void test_dict_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
449
uLong uncomprLen) {
common/dist/zlib/test/example.c
499
uLong uncomprLen = 20000;
common/dist/zlib/test/example.c
500
uLong comprLen = 3 * uncomprLen;
common/dist/zlib/test/example.c
66
static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
67
uLong uncomprLen) {
common/dist/zlib/test/example.c
69
uLong len = (uLong)strlen(hello)+1;
common/dist/zlib/test/example.c
90
static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) {
common/dist/zlib/uncompr.c
100
uLong sourceLen) {
common/dist/zlib/uncompr.c
101
uLong used = sourceLen;
common/dist/zlib/uncompr.c
86
uLong *sourceLen) {
common/dist/zlib/uncompr.c
90
*sourceLen = (uLong)used;
common/dist/zlib/uncompr.c
91
*destLen = (uLong)got;
common/dist/zlib/zconf.h
425
typedef uLong FAR uLongf;
common/dist/zlib/zlib.h
110
uLong adler; /* Adler-32 or CRC-32 value of the uncompressed data */
common/dist/zlib/zlib.h
111
uLong reserved; /* reserved for future use */
common/dist/zlib/zlib.h
1218
ZEXTERN uLong ZEXPORT zlibCompileFlags(void);
common/dist/zlib/zlib.h
122
uLong time; /* modification time */
common/dist/zlib/zlib.h
1274
const Bytef *source, uLong sourceLen);
common/dist/zlib/zlib.h
1291
const Bytef *source, uLong sourceLen,
common/dist/zlib/zlib.h
1309
ZEXTERN uLong ZEXPORT compressBound(uLong sourceLen);
common/dist/zlib/zlib.h
1318
const Bytef *source, uLong sourceLen);
common/dist/zlib/zlib.h
1338
const Bytef *source, uLong *sourceLen);
common/dist/zlib/zlib.h
1811
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
common/dist/zlib/zlib.h
1831
ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,
common/dist/zlib/zlib.h
1851
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
common/dist/zlib/zlib.h
1870
ZEXTERN uLong ZEXPORT crc32_z(uLong crc, const Bytef *buf,
common/dist/zlib/zlib.h
1894
ZEXTERN uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op);
common/dist/zlib/zlib.h
1986
ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
common/dist/zlib/zlib.h
1987
ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
common/dist/zlib/zlib.h
1988
ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
common/dist/zlib/zlib.h
2014
ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
common/dist/zlib/zlib.h
2015
ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
common/dist/zlib/zlib.h
2016
ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
common/dist/zlib/zlib.h
2023
ZEXTERN uLong ZEXPORT adler32_combine(uLong, uLong, z_off_t);
common/dist/zlib/zlib.h
2024
ZEXTERN uLong ZEXPORT crc32_combine(uLong, uLong, z_off_t);
common/dist/zlib/zlib.h
2025
ZEXTERN uLong ZEXPORT crc32_combine_gen(z_off_t);
common/dist/zlib/zlib.h
2030
ZEXTERN uLong ZEXPORT adler32_combine(uLong, uLong, z_off_t);
common/dist/zlib/zlib.h
2031
ZEXTERN uLong ZEXPORT crc32_combine(uLong, uLong, z_off_t);
common/dist/zlib/zlib.h
2032
ZEXTERN uLong ZEXPORT crc32_combine_gen(z_off_t);
common/dist/zlib/zlib.h
770
ZEXTERN uLong ZEXPORT deflateBound(z_streamp strm, uLong sourceLen);
common/dist/zlib/zlib.h
95
uLong total_in; /* total number of input bytes read so far */
common/dist/zlib/zlib.h
99
uLong total_out; /* total number of bytes output so far */
common/dist/zlib/zutil.c
33
uLong ZEXPORT zlibCompileFlags(void) {
common/dist/zlib/zutil.c
34
uLong flags;
common/dist/zlib/zutil.c
43
switch ((int)(sizeof(uLong))) {
common/dist/zlib/zutil.h
184
ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
common/dist/zlib/zutil.h
185
ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
common/dist/zlib/zutil.h
186
ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
sys/arch/hpc/stand/hpcboot/file_manager.cpp
39
uLong crc32(uLong crc, const Bytef *buf, uInt len);
sys/net/zlib.c
272
typedef uLong (ZEXPORT *check_func)(uLong check, const Bytef *buf,
sys/net/zlib.c
3397
uLong was; /* computed check value */
sys/net/zlib.c
3398
uLong need; /* stream check value */
sys/net/zlib.c
3553
z->state->sub.check.need = (uLong)NEXTBYTE << 24;
sys/net/zlib.c
3558
z->state->sub.check.need += (uLong)NEXTBYTE << 16;
sys/net/zlib.c
3563
z->state->sub.check.need += (uLong)NEXTBYTE << 8;
sys/net/zlib.c
3568
z->state->sub.check.need += (uLong)NEXTBYTE;
sys/net/zlib.c
3602
z->state->sub.check.need = (uLong)NEXTBYTE << 24;
sys/net/zlib.c
3607
z->state->sub.check.need += (uLong)NEXTBYTE << 16;
sys/net/zlib.c
3612
z->state->sub.check.need += (uLong)NEXTBYTE << 8;
sys/net/zlib.c
3617
z->state->sub.check.need += (uLong)NEXTBYTE;
sys/net/zlib.c
3693
uLong r, w; /* temporaries to save total_in and total_out */
sys/net/zlib.c
3915
uLong bitb; /* bit buffer */
sys/net/zlib.c
3922
uLong check; /* check on output */
sys/net/zlib.c
3938
#define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
sys/net/zlib.c
4073
uLong b; /* bit buffer */
sys/net/zlib.c
4351
uLong b; /* bit buffer */ /* NOT USED HERE */
sys/net/zlib.c
5139
uLong b; /* bit buffer */
sys/net/zlib.c
5423
#define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}}
sys/net/zlib.c
5439
uLong b; /* bit buffer */
sys/net/zlib.c
5848
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
sys/net/zlib.h
1134
ZEXTERN uLong ZEXPORT adler32(uLong, const Bytef *, uInt);
sys/net/zlib.h
1152
ZEXTERN uLong ZEXPORT crc32(uLong, const Bytef *, uInt);
sys/net/zlib.h
274
typedef uLong FAR uLongf;
sys/net/zlib.h
365
uLong total_in; /* total nb of input bytes read so far */
sys/net/zlib.h
369
uLong total_out; /* total nb of bytes output so far */
sys/net/zlib.h
379
uLong adler; /* adler32 value of the uncompressed data */
sys/net/zlib.h
380
uLong reserved; /* reserved for future use */
sys/net/zlib.h
916
ZEXTERN int ZEXPORT compress(Bytef *, uLongf *, const Bytef *, uLong);
sys/net/zlib.h
931
uLong, int);
sys/net/zlib.h
944
ZEXTERN int ZEXPORT uncompress(Bytef *, uLongf *, const Bytef *, uLong);
usr.bin/gzip/gzip.c
1030
uLong origcrc;
usr.bin/gzip/gzip.c
1061
uLong origlen;
usr.bin/gzip/gzip.c
599
uLong crc;
usr.bin/gzip/gzip.c
792
uLong crc = 0;