Searched refs:XXH64_state_t (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/common/third_party/xxhash/ |
D | xxhash.h | 237 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef 238 XXH_PUBLIC_API XXH64_state_t *XXH64_createState(void); 239 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t *statePtr); 240 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t *dst_state, const XXH64_state_t *src_state); 242 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t *statePtr, unsigned long long seed); 243 XXH_PUBLIC_API XXH_errorcode XXH64_update(XXH64_state_t *statePtr, 246 XXH_PUBLIC_API XXH64_hash_t XXH64_digest(const XXH64_state_t *statePtr);
|
D | xxhash.c | 859 XXH64_state_t state; in XXH64() 883 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState() 885 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState() 887 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() 893 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dstState, const XXH64_state_t* srcState) in XXH64_copyState() 898 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() 900 …XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH64_reset() 912 XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len, XXH_endianess endian) in XXH64_update_endian() 971 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) in XXH64_update() 981 FORCE_INLINE U64 XXH64_digest_endian (const XXH64_state_t* state, XXH_endianess endian) in XXH64_digest_endian() [all …]
|
D | README.md | 122 XXH64_state_t* const state = XXH64_createState();
|
/third_party/lz4/lib/ |
D | xxhash.h | 229 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef 230 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void); 231 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr); 232 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state); 234 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed); 235 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt… 236 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
|
D | xxhash.c | 859 XXH64_state_t state; in XXH64() 883 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState() 885 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState() 887 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() 893 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dstState, const XXH64_state_t* srcState) in XXH64_copyState() 898 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() 900 …XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnin… in XXH64_reset() 912 XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len, XXH_endianess endian) in XXH64_update_endian() 971 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) in XXH64_update() 981 FORCE_INLINE U64 XXH64_digest_endian (const XXH64_state_t* state, XXH_endianess endian) in XXH64_digest_endian() [all …]
|
/third_party/mesa3d/src/util/ |
D | xxhash.h | 289 typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ typedef 290 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void); 291 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr); 292 XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state); 294 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, XXH64_hash_t seed); 295 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt… 296 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr); 1281 XXH64_state_t state; in XXH64() 1300 XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) in XXH64_createState() 1302 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState() [all …]
|
/third_party/lz4/tests/ |
D | fuzzer.c | 1235 { XXH64_state_t xxhOrig; in FUZ_unitTests() 1236 XXH64_state_t xxhNewSafe, xxhNewFast; in FUZ_unitTests() 1438 { XXH64_state_t crcOrigState; in FUZ_unitTests() 1439 XXH64_state_t crcNewState; in FUZ_unitTests() 1482 { XXH64_state_t xxhOrig; in FUZ_unitTests() 1483 XXH64_state_t xxhNewSafe, xxhNewFast; in FUZ_unitTests() 1544 { XXH64_state_t xxhOrig; in FUZ_unitTests() 1545 XXH64_state_t xxhNewSafe, xxhNewFast; in FUZ_unitTests()
|
D | frametest.c | 891 XXH64_state_t xxh64; in test_lz4f_decompression_wBuffers()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_autotune.c | 132 XXH64_state_t hash_state; in hash_renderpass_instance()
|