]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libz/adler32.c
This commit was generated by cvs2svn to compensate for changes in r141858,
[FreeBSD/FreeBSD.git] / lib / libz / adler32.c
1 /* adler32.c -- compute the Adler-32 checksum of a data stream
2  * Copyright (C) 1995-2003 Mark Adler
3  * For conditions of distribution and use, see copyright notice in zlib.h
4  */
5
6 #include <sys/cdefs.h>
7 __FBSDID("$FreeBSD$");
8
9 #define ZLIB_INTERNAL
10 #include "zlib.h"
11
12 #define BASE 65521UL    /* largest prime smaller than 65536 */
13 #define NMAX 5552
14 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
15
16 #define DO1(buf,i)  {s1 += buf[i]; s2 += s1;}
17 #define DO2(buf,i)  DO1(buf,i); DO1(buf,i+1);
18 #define DO4(buf,i)  DO2(buf,i); DO2(buf,i+2);
19 #define DO8(buf,i)  DO4(buf,i); DO4(buf,i+4);
20 #define DO16(buf)   DO8(buf,0); DO8(buf,8);
21
22 #ifdef NO_DIVIDE
23 #  define MOD(a) \
24     do { \
25         if (a >= (BASE << 16)) a -= (BASE << 16); \
26         if (a >= (BASE << 15)) a -= (BASE << 15); \
27         if (a >= (BASE << 14)) a -= (BASE << 14); \
28         if (a >= (BASE << 13)) a -= (BASE << 13); \
29         if (a >= (BASE << 12)) a -= (BASE << 12); \
30         if (a >= (BASE << 11)) a -= (BASE << 11); \
31         if (a >= (BASE << 10)) a -= (BASE << 10); \
32         if (a >= (BASE << 9)) a -= (BASE << 9); \
33         if (a >= (BASE << 8)) a -= (BASE << 8); \
34         if (a >= (BASE << 7)) a -= (BASE << 7); \
35         if (a >= (BASE << 6)) a -= (BASE << 6); \
36         if (a >= (BASE << 5)) a -= (BASE << 5); \
37         if (a >= (BASE << 4)) a -= (BASE << 4); \
38         if (a >= (BASE << 3)) a -= (BASE << 3); \
39         if (a >= (BASE << 2)) a -= (BASE << 2); \
40         if (a >= (BASE << 1)) a -= (BASE << 1); \
41         if (a >= BASE) a -= BASE; \
42     } while (0)
43 #else
44 #  define MOD(a) a %= BASE
45 #endif
46
47 /* ========================================================================= */
48 uLong ZEXPORT adler32(adler, buf, len)
49     uLong adler;
50     const Bytef *buf;
51     uInt len;
52 {
53     unsigned long s1 = adler & 0xffff;
54     unsigned long s2 = (adler >> 16) & 0xffff;
55     int k;
56
57     if (buf == Z_NULL) return 1L;
58
59     while (len > 0) {
60         k = len < NMAX ? (int)len : NMAX;
61         len -= k;
62         while (k >= 16) {
63             DO16(buf);
64             buf += 16;
65             k -= 16;
66         }
67         if (k != 0) do {
68             s1 += *buf++;
69             s2 += s1;
70         } while (--k);
71         MOD(s1);
72         MOD(s2);
73     }
74     return (s2 << 16) | s1;
75 }