Searched refs:xxh32_state (Results 1 - 2 of 2) sorted by relevance

/linux-master/include/linux/
H A Dxxhash.h144 * struct xxh32_state - private xxh32 state, do not use members directly
146 struct xxh32_state { struct
158 * struct xxh32_state - private xxh64 state, do not use members directly
176 * Call this function on any xxh32_state to prepare for a new hashing operation.
178 void xxh32_reset(struct xxh32_state *state, uint32_t seed);
191 int xxh32_update(struct xxh32_state *state, const void *input, size_t length);
204 uint32_t xxh32_digest(const struct xxh32_state *state);
249 void xxh32_copy_state(struct xxh32_state *dst, const struct xxh32_state *src);
/linux-master/lib/
H A Dxxhash.c79 void xxh32_copy_state(struct xxh32_state *dst, const struct xxh32_state *src)
242 void xxh32_reset(struct xxh32_state *statePtr, const uint32_t seed)
245 struct xxh32_state state;
270 int xxh32_update(struct xxh32_state *state, const void *input, const size_t len)
339 uint32_t xxh32_digest(const struct xxh32_state *state)

Completed in 96 milliseconds