ddt 1.4.0
 
Loading...
Searching...
No Matches
ddtCrc32.hpp
Go to the documentation of this file.
1
6
7// //////////////////////////////////////////////////////////
8// Crc32.hpp
9// Copyright (c) 2011-2019 Stephan Brumme. All rights reserved.
10// Slicing-by-16 contributed by Bulat Ziganshin
11// see http://create.stephan-brumme.com/disclaimer.html
12
13#include <stdint.h> // uint8_t, uint32_t, int32_t
14#include <cstddef> // size_t
15
16// compute CRC32 (Slicing-by-16 algorithm, prefetch upcoming data blocks)
17uint32_t crc32_16bytes_prefetch(const void* data, size_t length);
uint32_t crc32_16bytes_prefetch(const void *data, size_t length)
Definition ddtCrc32.cpp:900