aboutsummaryrefslogtreecommitdiff
path: root/src/zlib-ng/crc32_braid_p.h
blob: 80c0f14b9cdfb7525fe877ee6af0af4b80a338cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef CRC32_BRAID_P_H_
#define CRC32_BRAID_P_H_

#include "zbuild.h"
#include "zendian.h"

/* Define N */
#ifdef Z_TESTN
#  define N Z_TESTN
#else
#  define N 5
#endif
#if N < 1 || N > 6
#  error N must be in 1..6
#endif

/*
  Define W and the associated z_word_t type. If W is not defined, then a
  braided calculation is not used, and the associated tables and code are not
  compiled.
 */
#ifdef Z_TESTW
#  if Z_TESTW-1 != -1
#    define W Z_TESTW
#  endif
#else
#  ifndef W
#    if defined(__x86_64__) || defined(__aarch64__) || defined(__powerpc64__)
#      define W 8
#    else
#      define W 4
#    endif
#  endif
#endif
#ifdef W
#  if W == 8
     typedef uint64_t z_word_t;
#  else
#    undef W
#    define W 4
     typedef uint32_t z_word_t;
#  endif
#endif

/* CRC polynomial. */
#define POLY 0xedb88320         /* p(x) reflected, with x^32 implied */

extern uint32_t crc32_braid(uint32_t crc, const unsigned char *buf, uint64_t len);

#endif /* CRC32_BRAID_P_H_ */