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