HomeSort by relevance Sort by last modified time
    Searched refs:XXH64_state_t (Results 1 - 4 of 4) sorted by null

  /external/lz4/lib/
xxhash.h 228 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */
229 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void);
230 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
231 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
233 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
234 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length);
235 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
279 }; /* typedef'd to XXH64_state_t */
xxhash.c 697 XXH64_state_t state;
721 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void)
723 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t));
725 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr)
731 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dstState, const XXH64_state_t* srcState)
736 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed)
738 XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnings */
748 FORCE_INLINE XXH_errorcode XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len, XXH_endianess endian
    [all...]
  /external/lz4/tests/
fuzzer.c     [all...]
frametest.c 674 XXH64_state_t xxh64;
    [all...]

Completed in 89 milliseconds