eĿlipsis
a language independent preprocessor
 
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
ellipsis-hash.h
Go to the documentation of this file.
1
7#ifndef ELLIPSIS_HASH_H
8#define ELLIPSIS_HASH_H 1
9
10#include <stddef.h>
11#include <uchar.h>
14
28inline
29size_t ellipsis‿hash(size_t len, char32_t const s[restrict static len]) {
30 if (!len) return -1;
31 /* Make sure that we only spend char32_t arithmetic on the
32 multiplication. */
33 constexpr char32_t fib21 = ELLIPSIS_FIBFAC(21);
34 /* The value for all-zero bytes. This value is not the result of
35 fib21*x for any x < 2²¹, because fib21 is odd and thus not a
36 power of 2. When forcing this bit onto the result of the
37 multiplication, the new value is still unique for all x < 2^²¹,
38 because they already have a bit-difference in the lower bits. */
39 constexpr char32_t zer21 = (1ULL<<21);
40 constexpr size_t rad = 31;
41 size_t ret = 0;
42 for (size_t i = 0; i < len; i++) {
43 ret *= rad;
44 ret += (fib21 * s[i])|zer21;
45 }
46 return ret;
47}
48
49#endif
Fibonacci factors.
#define ELLIPSIS_FIBFAC(N)
The Fibonacci factor for N bits as an integer constant expression.
Definition ellipsis-fibfac.h:947
ellipsis‿hash ellipsis‿hash
Definition ellipsis-hash.c:9