Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/util/
Dxxhash.h289 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef
290 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void);
291 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
292 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
294 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, XXH64_hash_t seed);
295 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
296 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
1281 XXH64_state_t state; in XXH64()
1300 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState()
1302 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState()
[all …]