LLVM 19.0.0git
Public Member Functions | Public Attributes | List of all members
llvm::XXH128_hash_t Struct Reference

The return value from 128-bit hashes. More...

#include "llvm/Support/xxhash.h"

Public Member Functions

bool operator== (const XXH128_hash_t rhs) const
 Convenience equality check operator.
 

Public Attributes

uint64_t low64
 value & 0xFFFFFFFFFFFFFFFF
 
uint64_t high64
 value >> 64
 

Detailed Description

The return value from 128-bit hashes.

Stored in little endian order, although the fields themselves are in native endianness.

Definition at line 64 of file xxhash.h.

Member Function Documentation

◆ operator==()

bool llvm::XXH128_hash_t::operator== ( const XXH128_hash_t  rhs) const
inline

Convenience equality check operator.

Definition at line 69 of file xxhash.h.

References high64, and low64.

Member Data Documentation

◆ high64

uint64_t llvm::XXH128_hash_t::high64

◆ low64

uint64_t llvm::XXH128_hash_t::low64

The documentation for this struct was generated from the following file: