#include "zutil.h"
Go to the source code of this file.
Macros | |
| #define | BASE 65521U /* largest prime smaller than 65536 */ |
| #define | DO1(buf, i) {adler += (buf)[i]; sum2 += adler;} |
| #define | DO16(buf) DO8(buf,0); DO8(buf,8); |
| #define | DO2(buf, i) DO1(buf,i); DO1(buf,i+1); |
| #define | DO4(buf, i) DO2(buf,i); DO2(buf,i+2); |
| #define | DO8(buf, i) DO4(buf,i); DO4(buf,i+4); |
| #define | MOD(a) a %= BASE |
| #define | MOD28(a) a %= BASE |
| #define | MOD63(a) a %= BASE |
| #define | NMAX 5552 |
Functions | |
| uLong ZEXPORT | adler32 (uLong adler, const Bytef *buf, uInt len) |
| uLong ZEXPORT | adler32_combine (uLong adler1, uLong adler2, z_off_t len2) |
| uLong ZEXPORT | adler32_combine64 (uLong adler1, uLong adler2, z_off64_t len2) |
| uLong | adler32_combine_ (uLong adler1, uLong adler2, z_off64_t len2) |
| uLong ZEXPORT | adler32_z (uLong adler, const Bytef *buf, z_size_t len) |
| uLong adler32_combine_ | OF ((uLong adler1, uLong adler2, z_off64_t len2)) |
| #define BASE 65521U /* largest prime smaller than 65536 */ |
Definition at line 12 of file bloaty/third_party/zlib/adler32.c.
Definition at line 16 of file bloaty/third_party/zlib/adler32.c.
Definition at line 20 of file bloaty/third_party/zlib/adler32.c.
Definition at line 17 of file bloaty/third_party/zlib/adler32.c.
Definition at line 18 of file bloaty/third_party/zlib/adler32.c.
Definition at line 19 of file bloaty/third_party/zlib/adler32.c.
Definition at line 57 of file bloaty/third_party/zlib/adler32.c.
Definition at line 58 of file bloaty/third_party/zlib/adler32.c.
Definition at line 59 of file bloaty/third_party/zlib/adler32.c.
| #define NMAX 5552 |
Definition at line 13 of file bloaty/third_party/zlib/adler32.c.
Definition at line 134 of file bloaty/third_party/zlib/adler32.c.
Definition at line 172 of file bloaty/third_party/zlib/adler32.c.
Definition at line 180 of file bloaty/third_party/zlib/adler32.c.
Definition at line 143 of file bloaty/third_party/zlib/adler32.c.
Definition at line 63 of file bloaty/third_party/zlib/adler32.c.
| uLong adler32_combine_ OF | ( | (uLong adler1, uLong adler2, z_off64_t len2) | ) |