llvm::xxh3_128bits

xxh3_128bits overloads

Synopses

Declared in <llvm/Support/xxhash.h>

Compute the XXH3 128-bit hash of the bytes in data.

XXH128_hash_t
xxh3_128bits(ArrayRef<uint8_t> data);
» more...

XXH3's 128-bit variant. Inline ArrayRef overload lives in llvm/ADT/ArrayRef.h.

XXH128_hash_t
xxh3_128bits(
    uint8_t const* data,
    size_t len);
» more...

Return Value

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

Parameters

NameDescription
dataBytes to hash.
lenNumber of bytes at data.