#include <stdint.h>
#include "zconf.h"
#include "zutil.h"
#include "deflate.h"
uint32_t ZLIB_INTERNAL crc32_sse42_simd_(const unsigned char* buf,
z_size_t len,
uint32_t crc);
uint32_t ZLIB_INTERNAL crc32_avx512_simd_(const unsigned char* buf,
z_size_t len,
uint32_t crc);
#define Z_CRC32_SSE42_MINIMUM_LENGTH …
#define Z_CRC32_SSE42_CHUNKSIZE_MASK …
#define Z_CRC32_AVX512_MINIMUM_LENGTH …
#define Z_CRC32_AVX512_CHUNKSIZE_MASK …
uint32_t ZLIB_INTERNAL armv8_crc32_little(const unsigned char* buf,
z_size_t len,
uint32_t crc);
#if defined(__aarch64__)
#define Z_CRC32_PMULL_MINIMUM_LENGTH …
#define Z_CRC32_PMULL_CHUNKSIZE_MASK …
uint32_t ZLIB_INTERNAL armv8_crc32_pmull_little(const unsigned char* buf,
z_size_t len,
uint32_t crc);
#endif