Loading...
Searching...
No Matches
Go to the documentation of this file.
34#if (defined(USE_ZLIB) || defined(CRC_TABLE_ONLY))
35# ifdef IZ_CRC_BE_OPTIMIZ
36# undef IZ_CRC_BE_OPTIMIZ
43# define CRC_32_TAB crc_32_tab
49#ifdef IZ_CRC_BE_OPTIMIZ
50# define CRC32UPD(c, crctab) (crctab[((c) >> 24)] ^ ((c) << 8))
51# define CRC32(c, b, crctab) (crctab[(((int)(c) >> 24) ^ (b))] ^ ((c) << 8))
52# define REV_BE(w) (((w)>>24)+(((w)>>8)&0xff00)+ \
53 (((w)&0xff00)<<8)+(((w)&0xff)<<24))
55# define CRC32UPD(c, crctab) (crctab[((int)(c)) & 0xff] ^ ((c) >> 8))
56# define CRC32(c, b, crctab) (crctab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
void free_crc_table()
Definition crc32.c:634
#define ZCONST
Definition crc32.h:25
#define OF(a)
Definition crc32.h:22
png_uint_32 crc
Definition png.c:2247
unsigned long ulg
Definition unzip.h:403
unsigned char uch
Definition unzip.h:401
#define near
Definition unzpriv.h:901
unsigned int extent
Definition unzpriv.h:669
#define get_crc_table
Definition zconf.h:56
#define crc32
Definition zconf.h:55