llvm::xxh3_64bits

xxh3_64bits overloads

Synopses

Declared in <llvm/Support/xxhash.h>

Inline StringRef overloads of the xxhash entry points declared out-of-line in llvm/Support/xxhash.h. They live here so xxhash.h can stay free of ADT dependencies.

uint64_t
xxh3_64bits(StringRef data);
» more...

Inline ArrayRef overloads of the xxhash entry points declared out-of-line in llvm/Support/xxhash.h. They live here so xxhash.h can stay free of ADT dependencies.

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