crc32.h 380 B

12345678910111213141516
  1. /* crc32.h -- crc32 folding interface
  2. * Copyright (C) 2021 Nathan Moinvaziri
  3. * For conditions of distribution and use, see copyright notice in zlib.h
  4. */
  5. #ifndef CRC32_H_
  6. #define CRC32_H_
  7. #define CRC32_FOLD_BUFFER_SIZE (16 * 4)
  8. /* sizeof(__m128i) * (4 folds) */
  9. typedef struct crc32_fold_s {
  10. uint8_t fold[CRC32_FOLD_BUFFER_SIZE];
  11. uint32_t value;
  12. } crc32_fold;
  13. #endif