xxh3_64bits overloads
Declared in <llvm/Support/xxhash.h>
Compute the XXH3 64-bit hash of the bytes in data.
uint64_t
xxh3_64bits(StringRef data);
» more...
Compute the XXH3 64-bit hash of the bytes in data.
uint64_t
xxh3_64bits(ArrayRef<uint8_t> data);
» more...
XXH3's 64-bit variant. Inline ArrayRef and StringRef overloads live in llvm/ADT/ArrayRef.h and llvm/ADT/StringRef.h.
uint64_t
xxh3_64bits(
uint8_t const* data,
size_t len);
» more...
data.| Name | Description |
|---|---|
| data | Bytes to hash. |
| len | Number of bytes at data. |