Home
last modified time | relevance | path

Searched refs:statePtr (Results 1 - 9 of 9) sorted by relevance

/third_party/lz4/lib/
H A Dxxhash.h174 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
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 length);
179 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
231 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
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 length);
236 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
H A Dxxhash.c426 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument
428 XXH_free(statePtr); in XXH32_freeState()
437 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() argument
446 memcpy(statePtr, &state, sizeof(state) - sizeof(state.reserved)); in XXH32_reset()
887 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() argument
889 XXH_free(statePtr); in XXH64_freeState()
898 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() argument
907 memcpy(statePtr, &state, sizeof(state) - sizeof(state.reserved)); in XXH64_reset()
H A Dlz4hc.c962 LZ4_streamHC_t* const statePtr = (LZ4_streamHC_t*)ALLOC(sizeof(LZ4_streamHC_t)); in LZ4_compress_HC() local
963 if (statePtr==NULL) return 0; in LZ4_compress_HC()
966 LZ4_streamHC_t* const statePtr = &state; in LZ4_compress_HC()
968 cSize = LZ4_compress_HC_extStateHC(statePtr, src, dst, srcSize, dstCapacity, compressionLevel); in LZ4_compress_HC()
970 FREEMEM(statePtr); in LZ4_compress_HC()
/third_party/skia/third_party/externals/angle2/src/common/third_party/xxhash/
H A Dxxhash.h176 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t *statePtr);
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);
239 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t *statePtr);
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);
H A Dxxhash.c426 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument
428 XXH_free(statePtr); in XXH32_freeState()
437 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() argument
446 memcpy(statePtr, &state, sizeof(state) - sizeof(state.reserved)); in XXH32_reset()
887 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() argument
889 XXH_free(statePtr); in XXH64_freeState()
898 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() argument
907 memcpy(statePtr, &state, sizeof(state) - sizeof(state.reserved)); in XXH64_reset()
/third_party/skia/src/pdf/
H A DSkPDFGraphicState.cpp64 if (SkPDFIndirectReference* statePtr = fillMap.find(fillKey)) { in GetGraphicStateForPaint()
65 return *statePtr; in GetGraphicStateForPaint()
84 if (SkPDFIndirectReference* statePtr = sMap.find(strokeKey)) { in GetGraphicStateForPaint()
85 return *statePtr; in GetGraphicStateForPaint()
/third_party/mesa3d/src/util/
H A Dxxhash.h238 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
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 length);
243 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
291 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
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 length);
296 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
843 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument
845 XXH_free(statePtr); in XXH32_freeState()
854 XXH32_reset(XXH32_state_t* statePtr, XXH32_hash_t seed) XXH32_reset() argument
1304 XXH64_freeState(XXH64_state_t* statePtr) XXH64_freeState() argument
1315 XXH64_reset(XXH64_state_t* statePtr, XXH64_hash_t seed) XXH64_reset() argument
[all...]
/third_party/musl/Benchmark/musl/
H A Dlibc_pthread.cpp421 benchmark::State *statePtr = (benchmark::State *)arg; in BroadcastNotifyMutex() local
422 statePtr->ResumeTiming(); in BroadcastNotifyMutex()
424 statePtr->PauseTiming(); in BroadcastNotifyMutex()
580 benchmark::State *statePtr = (benchmark::State *)arg; in Func() local
581 statePtr->ResumeTiming(); in Func()
584 statePtr->PauseTiming(); in Func()
735 benchmark::State *statePtr = (benchmark::State *)arg; in CleanupPushAndPop() local
736 statePtr->ResumeTiming(); in CleanupPushAndPop()
739 statePtr->PauseTiming(); in CleanupPushAndPop()
/third_party/lz4/tests/
H A Dfuzzer.c1198 { LZ4_stream_t* const statePtr = LZ4_createStream(); in FUZ_unitTests() local
1199 FUZ_CHECKTEST(statePtr==NULL, "LZ4_createStream() allocation failed"); in FUZ_unitTests()
1200 LZ4_freeStream(statePtr); in FUZ_unitTests()

Completed in 16 milliseconds