MIDAS
Loading...
Searching...
No Matches
xxhash.h
Go to the documentation of this file.
1/*
2 xxHash - Extremely Fast Hash algorithm
3 Header File
4 Copyright (C) 2012-2015, Yann Collet.
5
6 BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
7
8 Redistribution and use in source and binary forms, with or without
9 modification, are permitted provided that the following conditions are
10 met:
11
12 * Redistributions of source code must retain the above copyright
13 notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above
15 copyright notice, this list of conditions and the following disclaimer
16 in the documentation and/or other materials provided with the
17 distribution.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 You can contact the author at :
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
33*/
34
35/* Notice extracted from xxHash homepage :
36
37xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
38It also successfully passes all tests from the SMHasher suite.
39
40Comparison (single thread, Windows Seven 32 bits, using SMHasher on a Core 2 Duo @3GHz)
41
42Name Speed Q.Score Author
43xxHash 5.4 GB/s 10
44CrapWow 3.2 GB/s 2 Andrew
45MumurHash 3a 2.7 GB/s 10 Austin Appleby
46SpookyHash 2.0 GB/s 10 Bob Jenkins
47SBox 1.4 GB/s 9 Bret Mulvey
48Lookup3 1.2 GB/s 9 Bob Jenkins
49SuperFastHash 1.2 GB/s 1 Paul Hsieh
50CityHash64 1.05 GB/s 10 Pike & Alakuijala
51FNV 0.55 GB/s 5 Fowler, Noll, Vo
52CRC32 0.43 GB/s 9
53MD5-32 0.33 GB/s 10 Ronald L. Rivest
54SHA1-32 0.28 GB/s 10
55
56Q.Score is a measure of quality of the hash function.
57It depends on successfully passing SMHasher test set.
5810 is a perfect score.
59
60A 64-bits version, named XXH64, is available since r35.
61It offers much better speed, but for 64-bits applications only.
62Name Speed on 64 bits Speed on 32 bits
63XXH64 13.8 GB/s 1.9 GB/s
64XXH32 6.8 GB/s 6.0 GB/s
65*/
66
67#pragma once
68
69#if defined (__cplusplus)
70extern "C" {
71#endif
72
73
74/*****************************
75* Definitions
76*****************************/
77#include <stddef.h> /* size_t */
78typedef enum { XXH_OK=0, XXH_ERROR } XXH_errorcode;
79
80
81
82/*****************************
83* Simple Hash Functions
84*****************************/
85
86unsigned int XXH32 (const void* input, size_t length, unsigned seed);
87unsigned long long XXH64 (const void* input, size_t length, unsigned long long seed);
88
89/*
90XXH32() :
91 Calculate the 32-bits hash of sequence "length" bytes stored at memory address "input".
92 The memory between input & input+length must be valid (allocated and read-accessible).
93 "seed" can be used to alter the result predictably.
94 This function successfully passes all SMHasher tests.
95 Speed on Core 2 Duo @ 3 GHz (single thread, SMHasher benchmark) : 5.4 GB/s
96XXH64() :
97 Calculate the 64-bits hash of sequence of length "len" stored at memory address "input".
98 Faster on 64-bits systems. Slower on 32-bits systems.
99*/
100
101
102
103/*****************************
104* Advanced Hash Functions
105*****************************/
106typedef struct { long long ll[ 6]; } XXH32_state_t;
107typedef struct { long long ll[11]; } XXH64_state_t;
108
109/*
110These structures allow static allocation of XXH states.
111States must then be initialized using XXHnn_reset() before first use.
112
113If you prefer dynamic allocation, please refer to functions below.
114*/
115
118
121
122/*
123These functions create and release memory for XXH state.
124States must then be initialized using XXHnn_reset() before first use.
125*/
126
127
130unsigned int XXH32_digest (const XXH32_state_t* statePtr);
131
134unsigned long long XXH64_digest (const XXH64_state_t* statePtr);
135
136/*
137These functions calculate the xxHash of an input provided in multiple smaller packets,
138as opposed to an input provided as a single block.
139
140XXH state space must first be allocated, using either static or dynamic method provided above.
141
142Start a new hash by initializing state with a seed, using XXHnn_reset().
143
144Then, feed the hash state by calling XXHnn_update() as many times as necessary.
145Obviously, input must be valid, meaning allocated and read accessible.
146The function returns an error code, with 0 meaning OK, and any other value meaning there is an error.
147
148Finally, you can produce a hash anytime, by using XXHnn_digest().
149This function returns the final nn-bits hash.
150You can nonetheless continue feeding the hash state with more input,
151and therefore get some new hashes, by calling again XXHnn_digest().
152
153When you are done, don't forget to free XXH state space, using typically XXHnn_freeState().
154*/
155
156
157#if defined (__cplusplus)
158}
159#endif
TH1X EXPRT * h1_book(const char *name, const char *title, int bins, double min, double max)
Definition rmidas.h:24
unsigned int XXH32_digest(const XXH32_state_t *statePtr)
XXH_errorcode XXH32_update(XXH32_state_t *statePtr, const void *input, size_t length)
XXH_errorcode
Definition xxhash.h:78
@ XXH_ERROR
Definition xxhash.h:78
@ XXH_OK
Definition xxhash.h:78
XXH_errorcode XXH32_reset(XXH32_state_t *statePtr, unsigned seed)
unsigned long long XXH64(const void *input, size_t length, unsigned long long seed)
XXH32_state_t * XXH32_createState(void)
unsigned long long XXH64_digest(const XXH64_state_t *statePtr)
XXH_errorcode XXH32_freeState(XXH32_state_t *statePtr)
unsigned int XXH32(const void *input, size_t length, unsigned seed)
XXH_errorcode XXH64_freeState(XXH64_state_t *statePtr)
XXH_errorcode XXH64_reset(XXH64_state_t *statePtr, unsigned long long seed)
XXH64_state_t * XXH64_createState(void)
XXH_errorcode XXH64_update(XXH64_state_t *statePtr, const void *input, size_t length)