Home
last modified time | relevance | path

Searched refs:XXH32_state_t (Results 1 – 1 of 1) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/
Dxxhash.h236 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef
237 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void);
238 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
239 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state);
241 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed);
242 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt…
243 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
819 XXH32_state_t state; in XXH32()
839 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState()
841 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
[all …]