Update contrib.
1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 /* adler32.cpp -- compute the Adler-32 checksum of a data stream
6 * Copyright (C) 1995-2004 Mark Adler
7 * For conditions of distribution and use, see copyright notice in zlib.h
15 #define BASE 65521UL /* largest prime smaller than 65536 */
17 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
19 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
20 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1);
21 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2);
22 #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4);
23 #define DO16(buf) DO8(buf,0); DO8(buf,8);
25 /* use NO_DIVIDE if your processor does not do division in hardware */
29 if (a >= (BASE << 16)) a -= (BASE << 16); \
30 if (a >= (BASE << 15)) a -= (BASE << 15); \
31 if (a >= (BASE << 14)) a -= (BASE << 14); \
32 if (a >= (BASE << 13)) a -= (BASE << 13); \
33 if (a >= (BASE << 12)) a -= (BASE << 12); \
34 if (a >= (BASE << 11)) a -= (BASE << 11); \
35 if (a >= (BASE << 10)) a -= (BASE << 10); \
36 if (a >= (BASE << 9)) a -= (BASE << 9); \
37 if (a >= (BASE << 8)) a -= (BASE << 8); \
38 if (a >= (BASE << 7)) a -= (BASE << 7); \
39 if (a >= (BASE << 6)) a -= (BASE << 6); \
40 if (a >= (BASE << 5)) a -= (BASE << 5); \
41 if (a >= (BASE << 4)) a -= (BASE << 4); \
42 if (a >= (BASE << 3)) a -= (BASE << 3); \
43 if (a >= (BASE << 2)) a -= (BASE << 2); \
44 if (a >= (BASE << 1)) a -= (BASE << 1); \
45 if (a >= BASE) a -= BASE; \
49 if (a >= (BASE << 4)) a -= (BASE << 4); \
50 if (a >= (BASE << 3)) a -= (BASE << 3); \
51 if (a >= (BASE << 2)) a -= (BASE << 2); \
52 if (a >= (BASE << 1)) a -= (BASE << 1); \
53 if (a >= BASE) a -= BASE; \
56 # define MOD(a) a %= BASE
57 # define MOD4(a) a %= BASE
60 /* ========================================================================= */
64 EXPORT_C uLong adler32_r(uLong adler,const Bytef * buf,uInt len)
66 uLong ZEXPORT adler32(adler, buf, len)
70 #endif /* __SYMBIAN32__ */
75 /* split Adler-32 into component sums */
76 sum2 = (adler >> 16) & 0xffff;
79 /* in case user likes doing a byte at a time, keep it fast */
87 return adler | (sum2 << 16);
90 /* initial Adler-32 value (deferred check for len == 1 speed) */
94 /* in case short lengths are provided, keep it somewhat fast */
102 MOD4(sum2); /* only added so many BASE's */
103 return adler | (sum2 << 16);
106 /* do length NMAX blocks -- requires just one modulo operation */
107 while (len >= NMAX) {
109 n = NMAX / 16; /* NMAX is divisible by 16 */
111 DO16(buf); /* 16 sums unrolled */
118 /* do remaining bytes (less than NMAX, still just one modulo) */
119 if (len) { /* avoid modulos if none remaining */
133 /* return recombined sums */
134 return adler | (sum2 << 16);
137 /* ========================================================================= */
140 EXPORT_C uLong adler32_combine_r(uLong adler1, uLong adler2, z_off_t len2)
142 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
146 #endif /* __SYMBIAN32__ */
152 /* the derivation of this formula is left as an exercise for the reader */
153 rem = (unsigned)(len2 % BASE);
154 sum1 = adler1 & 0xffff;
157 sum1 += (adler2 & 0xffff) + BASE - 1;
158 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
159 if (sum1 > BASE) sum1 -= BASE;
160 if (sum1 > BASE) sum1 -= BASE;
161 if (sum2 > (BASE << 1)) sum2 -= (BASE << 1);
162 if (sum2 > BASE) sum2 -= BASE;
163 return sum1 | (sum2 << 16);