sl@0
|
1 |
/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
* All rights reserved.
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
|
sl@0
|
5 |
/* adler32.cpp -- compute the Adler-32 checksum of a data stream
|
sl@0
|
6 |
* Copyright (C) 1995-2004 Mark Adler
|
sl@0
|
7 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
8 |
*/
|
sl@0
|
9 |
|
sl@0
|
10 |
/* @(#) $Id$ */
|
sl@0
|
11 |
|
sl@0
|
12 |
#define ZLIB_INTERNAL
|
sl@0
|
13 |
#include "libzcore.h"
|
sl@0
|
14 |
|
sl@0
|
15 |
#define BASE 65521UL /* largest prime smaller than 65536 */
|
sl@0
|
16 |
#define NMAX 5552
|
sl@0
|
17 |
/* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
|
sl@0
|
18 |
|
sl@0
|
19 |
#define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
|
sl@0
|
20 |
#define DO2(buf,i) DO1(buf,i); DO1(buf,i+1);
|
sl@0
|
21 |
#define DO4(buf,i) DO2(buf,i); DO2(buf,i+2);
|
sl@0
|
22 |
#define DO8(buf,i) DO4(buf,i); DO4(buf,i+4);
|
sl@0
|
23 |
#define DO16(buf) DO8(buf,0); DO8(buf,8);
|
sl@0
|
24 |
|
sl@0
|
25 |
/* use NO_DIVIDE if your processor does not do division in hardware */
|
sl@0
|
26 |
#ifdef NO_DIVIDE
|
sl@0
|
27 |
# define MOD(a) \
|
sl@0
|
28 |
do { \
|
sl@0
|
29 |
if (a >= (BASE << 16)) a -= (BASE << 16); \
|
sl@0
|
30 |
if (a >= (BASE << 15)) a -= (BASE << 15); \
|
sl@0
|
31 |
if (a >= (BASE << 14)) a -= (BASE << 14); \
|
sl@0
|
32 |
if (a >= (BASE << 13)) a -= (BASE << 13); \
|
sl@0
|
33 |
if (a >= (BASE << 12)) a -= (BASE << 12); \
|
sl@0
|
34 |
if (a >= (BASE << 11)) a -= (BASE << 11); \
|
sl@0
|
35 |
if (a >= (BASE << 10)) a -= (BASE << 10); \
|
sl@0
|
36 |
if (a >= (BASE << 9)) a -= (BASE << 9); \
|
sl@0
|
37 |
if (a >= (BASE << 8)) a -= (BASE << 8); \
|
sl@0
|
38 |
if (a >= (BASE << 7)) a -= (BASE << 7); \
|
sl@0
|
39 |
if (a >= (BASE << 6)) a -= (BASE << 6); \
|
sl@0
|
40 |
if (a >= (BASE << 5)) a -= (BASE << 5); \
|
sl@0
|
41 |
if (a >= (BASE << 4)) a -= (BASE << 4); \
|
sl@0
|
42 |
if (a >= (BASE << 3)) a -= (BASE << 3); \
|
sl@0
|
43 |
if (a >= (BASE << 2)) a -= (BASE << 2); \
|
sl@0
|
44 |
if (a >= (BASE << 1)) a -= (BASE << 1); \
|
sl@0
|
45 |
if (a >= BASE) a -= BASE; \
|
sl@0
|
46 |
} while (0)
|
sl@0
|
47 |
# define MOD4(a) \
|
sl@0
|
48 |
do { \
|
sl@0
|
49 |
if (a >= (BASE << 4)) a -= (BASE << 4); \
|
sl@0
|
50 |
if (a >= (BASE << 3)) a -= (BASE << 3); \
|
sl@0
|
51 |
if (a >= (BASE << 2)) a -= (BASE << 2); \
|
sl@0
|
52 |
if (a >= (BASE << 1)) a -= (BASE << 1); \
|
sl@0
|
53 |
if (a >= BASE) a -= BASE; \
|
sl@0
|
54 |
} while (0)
|
sl@0
|
55 |
#else
|
sl@0
|
56 |
# define MOD(a) a %= BASE
|
sl@0
|
57 |
# define MOD4(a) a %= BASE
|
sl@0
|
58 |
#endif
|
sl@0
|
59 |
|
sl@0
|
60 |
/* ========================================================================= */
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
#ifdef __SYMBIAN32__
|
sl@0
|
64 |
EXPORT_C uLong adler32_r(uLong adler,const Bytef * buf,uInt len)
|
sl@0
|
65 |
#else
|
sl@0
|
66 |
uLong ZEXPORT adler32(adler, buf, len)
|
sl@0
|
67 |
uLong adler;
|
sl@0
|
68 |
const Bytef *buf;
|
sl@0
|
69 |
uInt len;
|
sl@0
|
70 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
71 |
{
|
sl@0
|
72 |
unsigned long sum2;
|
sl@0
|
73 |
unsigned n;
|
sl@0
|
74 |
|
sl@0
|
75 |
/* split Adler-32 into component sums */
|
sl@0
|
76 |
sum2 = (adler >> 16) & 0xffff;
|
sl@0
|
77 |
adler &= 0xffff;
|
sl@0
|
78 |
|
sl@0
|
79 |
/* in case user likes doing a byte at a time, keep it fast */
|
sl@0
|
80 |
if (len == 1) {
|
sl@0
|
81 |
adler += buf[0];
|
sl@0
|
82 |
if (adler >= BASE)
|
sl@0
|
83 |
adler -= BASE;
|
sl@0
|
84 |
sum2 += adler;
|
sl@0
|
85 |
if (sum2 >= BASE)
|
sl@0
|
86 |
sum2 -= BASE;
|
sl@0
|
87 |
return adler | (sum2 << 16);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
/* initial Adler-32 value (deferred check for len == 1 speed) */
|
sl@0
|
91 |
if (buf == Z_NULL)
|
sl@0
|
92 |
return 1L;
|
sl@0
|
93 |
|
sl@0
|
94 |
/* in case short lengths are provided, keep it somewhat fast */
|
sl@0
|
95 |
if (len < 16) {
|
sl@0
|
96 |
while (len--) {
|
sl@0
|
97 |
adler += *buf++;
|
sl@0
|
98 |
sum2 += adler;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
if (adler >= BASE)
|
sl@0
|
101 |
adler -= BASE;
|
sl@0
|
102 |
MOD4(sum2); /* only added so many BASE's */
|
sl@0
|
103 |
return adler | (sum2 << 16);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
/* do length NMAX blocks -- requires just one modulo operation */
|
sl@0
|
107 |
while (len >= NMAX) {
|
sl@0
|
108 |
len -= NMAX;
|
sl@0
|
109 |
n = NMAX / 16; /* NMAX is divisible by 16 */
|
sl@0
|
110 |
do {
|
sl@0
|
111 |
DO16(buf); /* 16 sums unrolled */
|
sl@0
|
112 |
buf += 16;
|
sl@0
|
113 |
} while (--n);
|
sl@0
|
114 |
MOD(adler);
|
sl@0
|
115 |
MOD(sum2);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
/* do remaining bytes (less than NMAX, still just one modulo) */
|
sl@0
|
119 |
if (len) { /* avoid modulos if none remaining */
|
sl@0
|
120 |
while (len >= 16) {
|
sl@0
|
121 |
len -= 16;
|
sl@0
|
122 |
DO16(buf);
|
sl@0
|
123 |
buf += 16;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
while (len--) {
|
sl@0
|
126 |
adler += *buf++;
|
sl@0
|
127 |
sum2 += adler;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
MOD(adler);
|
sl@0
|
130 |
MOD(sum2);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
/* return recombined sums */
|
sl@0
|
134 |
return adler | (sum2 << 16);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
/* ========================================================================= */
|
sl@0
|
138 |
|
sl@0
|
139 |
#ifdef __SYMBIAN32__
|
sl@0
|
140 |
EXPORT_C uLong adler32_combine_r(uLong adler1, uLong adler2, z_off_t len2)
|
sl@0
|
141 |
#else
|
sl@0
|
142 |
uLong ZEXPORT adler32_combine(adler1, adler2, len2)
|
sl@0
|
143 |
uLong adler1;
|
sl@0
|
144 |
uLong adler2;
|
sl@0
|
145 |
z_off_t len2;
|
sl@0
|
146 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
147 |
{
|
sl@0
|
148 |
unsigned long sum1;
|
sl@0
|
149 |
unsigned long sum2;
|
sl@0
|
150 |
unsigned rem;
|
sl@0
|
151 |
|
sl@0
|
152 |
/* the derivation of this formula is left as an exercise for the reader */
|
sl@0
|
153 |
rem = (unsigned)(len2 % BASE);
|
sl@0
|
154 |
sum1 = adler1 & 0xffff;
|
sl@0
|
155 |
sum2 = rem * sum1;
|
sl@0
|
156 |
MOD(sum2);
|
sl@0
|
157 |
sum1 += (adler2 & 0xffff) + BASE - 1;
|
sl@0
|
158 |
sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
|
sl@0
|
159 |
if (sum1 > BASE) sum1 -= BASE;
|
sl@0
|
160 |
if (sum1 > BASE) sum1 -= BASE;
|
sl@0
|
161 |
if (sum2 > (BASE << 1)) sum2 -= (BASE << 1);
|
sl@0
|
162 |
if (sum2 > BASE) sum2 -= BASE;
|
sl@0
|
163 |
return sum1 | (sum2 << 16);
|
sl@0
|
164 |
}
|