Searched refs:XXH32_state_t (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/common/third_party/xxhash/ |
D | xxhash.h | 174 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef 175 XXH_PUBLIC_API XXH32_state_t *XXH32_createState(void); 176 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t *statePtr); 177 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t *dst_state, const XXH32_state_t *src_state); 179 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t *statePtr, unsigned int seed); 180 XXH_PUBLIC_API XXH_errorcode XXH32_update(XXH32_state_t *statePtr, 183 XXH_PUBLIC_API XXH32_hash_t XXH32_digest(const XXH32_state_t *statePtr);
|
D | xxhash.c | 396 XXH32_state_t state; in XXH32() 422 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState() 424 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState() 426 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() 432 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState() 437 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() 439 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset() 452 XXH32_update_endian(XXH32_state_t* state, const void* input, size_t len, XXH_endianess endian) in XXH32_update_endian() 515 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() 527 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian() [all …]
|
/third_party/lz4/lib/ |
D | xxhash.h | 172 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef 173 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void); 174 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr); 175 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state); 177 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed); 178 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt… 179 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
|
D | xxhash.c | 396 XXH32_state_t state; in XXH32() 422 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState() 424 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState() 426 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() 432 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState() 437 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() 439 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset() 452 XXH32_update_endian(XXH32_state_t* state, const void* input, size_t len, XXH_endianess endian) in XXH32_update_endian() 515 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() 527 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian() [all …]
|
D | lz4frame.c | 275 XXH32_state_t xxh; 1223 XXH32_state_t xxh; 1224 XXH32_state_t blockChecksum;
|
/third_party/mesa3d/src/util/ |
D | xxhash.h | 236 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 …]
|