Searched refs:XXH32_state_t (Results 1 – 10 of 10) sorted by relevance
/external/vulkan-validation-layers/layers/ |
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 | 324 XXH32_state_t state; in XXH32() 350 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState() 352 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState() 354 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() 360 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dstState, const XXH32_state_t* srcState) in XXH32_copyState() 365 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() 367 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset() 378 FORCE_INLINE XXH_errorcode XXH32_update_endian (XXH32_state_t* state, const void* input, size_t len… in XXH32_update_endian() 436 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() 448 FORCE_INLINE U32 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian() [all …]
|
/external/zstd/lib/common/ |
D | xxhash.h | 162 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef 167 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void); 168 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr); 176 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed); 177 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt… 178 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr); 214 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restric…
|
D | xxhash.c | 270 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dstState, const XXH32_state_t* restrict… in XXH32_copyState() 493 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState() 495 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState() 497 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() 516 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() 518 …XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH32_reset() 542 FORCE_INLINE_TEMPLATE XXH_errorcode XXH32_update_endian (XXH32_state_t* state, const void* input, s… in XXH32_update_endian() 600 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() 612 FORCE_INLINE_TEMPLATE U32 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) in XXH32_digest_endian() 648 XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in) in XXH32_digest()
|
/external/angle/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 …]
|
/external/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 | 235 XXH32_state_t xxh; 1053 XXH32_state_t xxh; 1054 XXH32_state_t blockChecksum;
|
/external/mesa3d/src/util/ |
D | xxhash.h | 234 typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ typedef 235 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void); 236 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr); 237 XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state); 239 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, XXH32_hash_t seed); 240 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt… 241 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr); 817 XXH32_state_t state; in XXH32() 837 XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) in XXH32_createState() 839 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState() [all …]
|