|
xxHash 0.8.2
Extremely fast non-cryptographic hash function
|
Data Structures | |
| struct | XXH32_canonical_t |
| Canonical (big endian) representation of XXH32_hash_t. More... | |
Typedefs | |
| typedef struct XXH32_state_s | XXH32_state_t |
| The opaque state struct for the XXH32 streaming API. | |
Functions | |
| XXH32_hash_t | XXH32 (const void *input, size_t length, XXH32_hash_t seed) |
Calculates the 32-bit hash of input using xxHash32. | |
| XXH32_state_t * | XXH32_createState (void) |
| Allocates an XXH32_state_t. | |
| XXH_errorcode | XXH32_freeState (XXH32_state_t *statePtr) |
| Frees an XXH32_state_t. | |
| void | XXH32_copyState (XXH32_state_t *dst_state, const XXH32_state_t *src_state) |
| Copies one XXH32_state_t to another. | |
| XXH_errorcode | XXH32_reset (XXH32_state_t *statePtr, XXH32_hash_t seed) |
| Resets an XXH32_state_t to begin a new hash. | |
| XXH_errorcode | XXH32_update (XXH32_state_t *statePtr, const void *input, size_t length) |
Consumes a block of input to an XXH32_state_t. | |
| XXH32_hash_t | XXH32_digest (const XXH32_state_t *statePtr) |
| Returns the calculated hash value from an XXH32_state_t. | |
| void | XXH32_canonicalFromHash (XXH32_canonical_t *dst, XXH32_hash_t hash) |
| Converts an XXH32_hash_t to a big endian XXH32_canonical_t. | |
| XXH32_hash_t | XXH32_hashFromCanonical (const XXH32_canonical_t *src) |
| Converts an XXH32_canonical_t to a native XXH32_hash_t. | |
Contains functions used in the classic 32-bit xxHash algorithm.
| typedef struct XXH32_state_s XXH32_state_t |
The opaque state struct for the XXH32 streaming API.
| XXH32_hash_t XXH32 | ( | const void * | input, |
| size_t | length, | ||
| XXH32_hash_t | seed ) |
Calculates the 32-bit hash of input using xxHash32.
| input | The block of data to be hashed, at least length bytes in size. |
| length | The length of input, in bytes. |
| seed | The 32-bit seed to alter the hash's output predictably. |
input and input + length must be valid, readable, contiguous memory. However, if length is 0, input may be NULL. In C++, this also must be TriviallyCopyable.| XXH32_state_t * XXH32_createState | ( | void | ) |
Allocates an XXH32_state_t.
| XXH_errorcode XXH32_freeState | ( | XXH32_state_t * | statePtr | ) |
Frees an XXH32_state_t.
| statePtr | A pointer to an XXH32_state_t allocated with XXH32_createState(). |
statePtr must be allocated with XXH32_createState().| void XXH32_copyState | ( | XXH32_state_t * | dst_state, |
| const XXH32_state_t * | src_state ) |
Copies one XXH32_state_t to another.
| dst_state | The state to copy to. |
| src_state | The state to copy from. |
dst_state and src_state must not be NULL and must not overlap. | XXH_errorcode XXH32_reset | ( | XXH32_state_t * | statePtr, |
| XXH32_hash_t | seed ) |
Resets an XXH32_state_t to begin a new hash.
| statePtr | The state struct to reset. |
| seed | The 32-bit seed to alter the hash result predictably. |
statePtr must not be NULL.| XXH_errorcode XXH32_update | ( | XXH32_state_t * | statePtr, |
| const void * | input, | ||
| size_t | length ) |
Consumes a block of input to an XXH32_state_t.
| statePtr | The state struct to update. |
| input | The block of data to be hashed, at least length bytes in size. |
| length | The length of input, in bytes. |
statePtr must not be NULL. input and input + length must be valid, readable, contiguous memory. However, if length is 0, input may be NULL. In C++, this also must be TriviallyCopyable.| XXH32_hash_t XXH32_digest | ( | const XXH32_state_t * | statePtr | ) |
Returns the calculated hash value from an XXH32_state_t.
| statePtr | The state struct to calculate the hash from. |
statePtr must not be NULL.statePtr, so you can update, digest, and update again.| void XXH32_canonicalFromHash | ( | XXH32_canonical_t * | dst, |
| XXH32_hash_t | hash ) |
Converts an XXH32_hash_t to a big endian XXH32_canonical_t.
| dst | The XXH32_canonical_t pointer to be stored to. |
| hash | The XXH32_hash_t to be converted. |
dst must not be NULL.| XXH32_hash_t XXH32_hashFromCanonical | ( | const XXH32_canonical_t * | src | ) |
Converts an XXH32_canonical_t to a native XXH32_hash_t.
| src | The XXH32_canonical_t to convert. |
src must not be NULL.