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

Some functions and macros for CRC32 and CRC64. More...

#include "common.h"

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)
 
#define crc_attr_no_sanitize_address
 
#define CRC32_GENERIC   1
 
#define CRC64_GENERIC   1
 

Detailed Description

Some functions and 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)

◆ CRC32_GENERIC

#define CRC32_GENERIC   1

◆ CRC64_GENERIC

#define CRC64_GENERIC   1

◆ crc_attr_no_sanitize_address

#define crc_attr_no_sanitize_address

◆ D

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

◆ S32

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

◆ S8

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