cryptlib  3.4.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros
Macros | Functions
adler32.c File Reference
#include "zlib/zutil.h"

Go to the source code of this file.

Macros

#define ZLIB_INTERNAL   /* pcg */
 
#define local   static
 
#define BASE   65521UL /* largest prime smaller than 65536 */
 
#define NMAX   5552
 
#define DO1(buf, i)   {adler += (buf)[i]; sum2 += adler;}
 
#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 DO16(buf)   DO8(buf,0); DO8(buf,8);
 
#define MOD(a)   a %= BASE
 
#define MOD4(a)   a %= BASE
 

Functions

local uLong adler32_combine_ (uLong adler1, uLong adler2, z_off64_t len2)
 
uLong ZEXPORT adler32 (uLong adler, const Bytef *buf, uInt len)
 
local uLong adler32_combine_ (uLong adler1, uLong adler2, z_off_t len2)
 
uLong ZEXPORT adler32_combine (uLong adler1, uLong adler2, z_off_t len2)
 
uLong ZEXPORT adler32_combine64 (uLong adler1, uLong adler2, z_off64_t len2)
 

Macro Definition Documentation

#define BASE   65521UL /* largest prime smaller than 65536 */

Definition at line 38 of file adler32.c.

#define DO1 (   buf,
 
)    {adler += (buf)[i]; sum2 += adler;}

Definition at line 42 of file adler32.c.

#define DO16 (   buf)    DO8(buf,0); DO8(buf,8);

Definition at line 46 of file adler32.c.

#define DO2 (   buf,
 
)    DO1(buf,i); DO1(buf,i+1);

Definition at line 43 of file adler32.c.

#define DO4 (   buf,
 
)    DO2(buf,i); DO2(buf,i+2);

Definition at line 44 of file adler32.c.

#define DO8 (   buf,
 
)    DO4(buf,i); DO4(buf,i+4);

Definition at line 45 of file adler32.c.

#define local   static

Definition at line 34 of file adler32.c.

#define MOD (   a)    a %= BASE

Definition at line 79 of file adler32.c.

#define MOD4 (   a)    a %= BASE

Definition at line 80 of file adler32.c.

#define NMAX   5552

Definition at line 39 of file adler32.c.

#define ZLIB_INTERNAL   /* pcg */

Definition at line 27 of file adler32.c.

Function Documentation

uLong ZEXPORT adler32 ( uLong  adler,
const Bytef buf,
uInt  len 
)

Definition at line 84 of file adler32.c.

uLong ZEXPORT adler32_combine ( uLong  adler1,
uLong  adler2,
z_off_t  len2 
)

Definition at line 173 of file adler32.c.

uLong ZEXPORT adler32_combine64 ( uLong  adler1,
uLong  adler2,
z_off64_t  len2 
)

Definition at line 178 of file adler32.c.

local uLong adler32_combine_ ( uLong  adler1,
uLong  adler2,
z_off64_t  len2 
)
local uLong adler32_combine_ ( uLong  adler1,
uLong  adler2,
z_off_t  len2 
)

Definition at line 152 of file adler32.c.