Searched refs:XXH32_state_t (Results 1 – 3 of 3) sorted by relevance
/external/lz4/lib/ |
D | xxhash.h | 170 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef 171 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void); 172 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr); 173 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state); 175 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed); 176 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt… 177 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
|
D | xxhash.c | 325 XXH32_state_t state; in XXH32() 351 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState() 353 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState() 355 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() 361 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState() 366 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() 368 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset() 379 FORCE_INLINE XXH_errorcode XXH32_update_endian (XXH32_state_t* state, const void* input, size_t len… in XXH32_update_endian() 437 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() 449 FORCE_INLINE U32 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian() [all …]
|
D | lz4frame.c | 179 XXH32_state_t xxh; 746 XXH32_state_t xxh;
|