chiark / gitweb /
journal: move field index from file into journal object
[elogind.git] / src / journal / lookup3.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foolookup3hfoo
4 #define foolookup3hfoo
5
6 #include <inttypes.h>
7 #include <sys/types.h>
8
9 uint32_t jenkins_hashword(const uint32_t *k, size_t length, uint32_t initval);
10 void jenkins_hashword2(const uint32_t *k, size_t length, uint32_t *pc, uint32_t *pb);
11
12 uint32_t jenkins_hashlittle(const void *key, size_t length, uint32_t initval);
13 void jenkins_hashlittle2(const void *key, size_t length, uint32_t *pc, uint32_t *pb);
14
15 uint32_t jenkins_hashbig(const void *key, size_t length, uint32_t initval);
16
17 static inline uint64_t hash64(const void *data, size_t length) {
18         uint32_t a = 0, b = 0;
19
20         jenkins_hashlittle2(data, length, &a, &b);
21
22         return ((uint64_t) a << 32ULL) | (uint64_t) b;
23 }
24
25 #endif