Lines Matching full:xxhash
2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
35 /* Notice extracted from xxHash homepage :
37 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
43 xxHash 5.4 GB/s 10
86 * This is useful to include xxhash functions in `static` mode
90 * #include "xxhash.h"
91 * `xxhash.c` is automatically included.
113 If you want to include _and expose_ xxHash functions from within your own library,
114 but also want to avoid symbol collisions with other libraries which may also include xxHash,
116 you can use XXH_NAMESPACE, to automatically prefix any public symbol from xxhash library
119 Note that no change is required within the calling program as long as it includes `xxhash.h` :
180 These functions generate the xxHash of an input provided in multiple segments.
283 # include "xxhash.c" /* include xxhash function bodies as `static`, for inlining */