25 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
26 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1);
27 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2);
28 #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4);
29 #define DO16(buf) DO8(buf,0); DO8(buf,8);
35 if (a >= (BASE << 16)) a -= (BASE << 16); \
36 if (a >= (BASE << 15)) a -= (BASE << 15); \
37 if (a >= (BASE << 14)) a -= (BASE << 14); \
38 if (a >= (BASE << 13)) a -= (BASE << 13); \
39 if (a >= (BASE << 12)) a -= (BASE << 12); \
40 if (a >= (BASE << 11)) a -= (BASE << 11); \
41 if (a >= (BASE << 10)) a -= (BASE << 10); \
42 if (a >= (BASE << 9)) a -= (BASE << 9); \
43 if (a >= (BASE << 8)) a -= (BASE << 8); \
44 if (a >= (BASE << 7)) a -= (BASE << 7); \
45 if (a >= (BASE << 6)) a -= (BASE << 6); \
46 if (a >= (BASE << 5)) a -= (BASE << 5); \
47 if (a >= (BASE << 4)) a -= (BASE << 4); \
48 if (a >= (BASE << 3)) a -= (BASE << 3); \
49 if (a >= (BASE << 2)) a -= (BASE << 2); \
50 if (a >= (BASE << 1)) a -= (BASE << 1); \
51 if (a >= BASE) a -= BASE; \
55 if (a >= (BASE << 4)) a -= (BASE << 4); \
56 if (a >= (BASE << 3)) a -= (BASE << 3); \
57 if (a >= (BASE << 2)) a -= (BASE << 2); \
58 if (a >= (BASE << 1)) a -= (BASE << 1); \
59 if (a >= BASE) a -= BASE; \
62 # define MOD(a) a %= BASE
63 # define MOD4(a) a %= BASE
73 sum2 = (adler >> 16) & 0xffff;
84 return adler | (sum2 << 16);
100 return adler | (sum2 << 16);
104 while (len >=
NMAX) {
131 return adler | (sum2 << 16);
142 rem = (unsigned)(len2 %
BASE);
143 sum1 = adler1 & 0xffff;
146 sum1 += (adler2 & 0xffff) + BASE - 1;
147 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
148 if (sum1 >= BASE) sum1 -=
BASE;
149 if (sum1 >= BASE) sum1 -=
BASE;
150 if (sum2 >= (BASE << 1)) sum2 -= (BASE << 1);
151 if (sum2 >= BASE) sum2 -=
BASE;
152 return sum1 | (sum2 << 16);
#define ABC_NAMESPACE_IMPL_END
uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2)
#define ABC_NAMESPACE_IMPL_START
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2)
uLong ZEXPORT adler32_combine(uLong adler1, uLong adler2, z_off_t len2)