The ROme OpTimistic Simulator  2.0.0
A General-Purpose Multithreaded Parallel/Distributed Simulation Platform
xxhash.h
Go to the documentation of this file.
1 
52 #pragma once
53 
54 #ifdef EXTRA_CHECKS
55 
56 #include <stddef.h> /* size_t */
57 
58 typedef enum { XXH_OK = 0, XXH_ERROR } XXH_errorcode;
59 typedef struct {
60  long long ll[6];
62 typedef struct {
63  long long ll[11];
65 
66 unsigned int XXH32(const void *input, size_t length, unsigned seed);
67 unsigned long long XXH64(const void *input, size_t length, unsigned long long seed);
68 
69 #endif