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 104 typedef struct { long long ll[11]; } XXH64_state_t;
116 XXH64_state_t* XXH64_createState(void);
117 XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
129 XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
130 XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length);
131 unsigned long long XXH64_digest (const XXH64_state_t* statePtr);
xxhash.c 482 XXH64_state_t state;
547 XXH64_state_t* XXH64_createState(void)
549 XXH_STATIC_ASSERT(sizeof(XXH64_state_t) >= sizeof(XXH_istate64_t)); /* A compilation error here means XXH64_state_t is not large enough */
550 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t));
552 XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr)
574 XXH_errorcode XXH64_reset(XXH64_state_t* state_in, unsigned long long seed)
742 FORCE_INLINE XXH_errorcode XXH64_update_endian (XXH64_state_t* state_in, const void* input, size_t len, XXH_endianess endian)
831 XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len
    [all...]
  /external/lz4/programs/
fuzzer.c 727 XXH64_state_t xxhOrig;
728 XXH64_state_t xxhNew;
    [all...]
frametest.c 390 XXH64_state_t xxh64;

Completed in 2731 milliseconds