llvm::xxh3_64bits

xxh3_64bits overloads

Synopses

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...

Return Value

  • The 64-bit XXH3 hash of data.
  • XXH3 64-bit hash of the bytes.

Parameters

NameDescription
dataBytes to hash.
lenNumber of bytes at data.