Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
crc_macros.h File Reference

Some endian-dependent macros for CRC32 and CRC64. More...

Go to the source code of this file.

Macros

#define A(x)
 
#define B(x)
 
#define C(x)
 
#define D(x)
 
#define S8(x)
 
#define S32(x)
 

Detailed Description

Some endian-dependent macros for CRC32 and CRC64.

Macro Definition Documentation

◆ A

#define A ( x)
Value:
((x) & 0xFF)

◆ B

#define B ( x)
Value:
(((x) >> 8) & 0xFF)

◆ C

#define C ( x)
Value:
(((x) >> 16) & 0xFF)

◆ D

#define D ( x)
Value:
((x) >> 24)

◆ S32

#define S32 ( x)
Value:
((x) >> 32)

◆ S8

#define S8 ( x)
Value:
((x) >> 8)