Home
last modified time | relevance | path

Searched refs:statePtr (Results 1 – 24 of 24) sorted by relevance

/external/zstd/lib/common/
Dfse.h512 MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) in FSE_initCState() argument
517 statePtr->value = (ptrdiff_t)1<<tableLog; in FSE_initCState()
518 statePtr->stateTable = u16ptr+2; in FSE_initCState()
519 statePtr->symbolTT = ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1); in FSE_initCState()
520 statePtr->stateLog = tableLog; in FSE_initCState()
527 MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) in FSE_initCState2() argument
529 FSE_initCState(statePtr, ct); in FSE_initCState2()
530 …ompressionTransform symbolTT = ((const FSE_symbolCompressionTransform*)(statePtr->symbolTT))[symbo… in FSE_initCState2()
531 const U16* stateTable = (const U16*)(statePtr->stateTable); in FSE_initCState2()
533 statePtr->value = (nbBitsOut << 16) - symbolTT.deltaNbBits; in FSE_initCState2()
[all …]
Dxxhash.h168 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
171 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_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);
180 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
181 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
182 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
Dxxhash.c497 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument
499 XXH_free(statePtr); in XXH32_freeState()
507 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() argument
509 XXH_free(statePtr); in XXH64_freeState()
516 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() argument
524 ZSTD_memcpy(statePtr, &state, sizeof(state)); in XXH32_reset()
529 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() argument
537 ZSTD_memcpy(statePtr, &state, sizeof(state)); in XXH64_reset()
Dfse_decompress.c251 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
/external/vulkan-validation-layers/layers/
Dxxhash.h172 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
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);
230 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
233 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
234 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
235 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
Dxxhash.c354 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument
356 XXH_free(statePtr); in XXH32_freeState()
365 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() argument
373 memcpy(statePtr, &state, sizeof(state)); in XXH32_reset()
724 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() argument
726 XXH_free(statePtr); in XXH64_freeState()
735 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() argument
743 memcpy(statePtr, &state, sizeof(state)); in XXH64_reset()
/external/angle/src/common/third_party/xxhash/
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);
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()
/external/lz4/lib/
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 lengt…
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 lengt…
236 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
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()
Dlz4hc.c923 LZ4_streamHC_t* const statePtr = (LZ4_streamHC_t*)ALLOC(sizeof(LZ4_streamHC_t)); in LZ4_compress_HC() local
926 LZ4_streamHC_t* const statePtr = &state; in LZ4_compress_HC()
928 …int const cSize = LZ4_compress_HC_extStateHC(statePtr, src, dst, srcSize, dstCapacity, compression… in LZ4_compress_HC()
930 FREEMEM(statePtr); in LZ4_compress_HC()
/external/skia/src/pdf/
DSkPDFGraphicState.cpp62 if (SkPDFIndirectReference* statePtr = fillMap.find(fillKey)) { in GetGraphicStateForPaint() local
63 return *statePtr; in GetGraphicStateForPaint()
82 if (SkPDFIndirectReference* statePtr = sMap.find(strokeKey)) { in GetGraphicStateForPaint() local
83 return *statePtr; in GetGraphicStateForPaint()
/external/skqp/src/pdf/
DSkPDFGraphicState.cpp62 if (SkPDFIndirectReference* statePtr = fillMap.find(fillKey)) { in GetGraphicStateForPaint() local
63 return *statePtr; in GetGraphicStateForPaint()
82 if (SkPDFIndirectReference* statePtr = sMap.find(strokeKey)) { in GetGraphicStateForPaint() local
83 return *statePtr; in GetGraphicStateForPaint()
/external/mesa3d/src/util/
Dxxhash.h236 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
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);
289 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
292 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, XXH64_hash_t seed);
293 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt…
294 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
841 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument
843 XXH_free(statePtr); in XXH32_freeState()
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DNativeMetadataCredentialsPlugin.cs26 …internal delegate void NativeMetadataInterceptor(IntPtr statePtr, IntPtr serviceUrlPtr, IntPtr met… in NativeMetadataInterceptor() argument
55 …private void NativeMetadataInterceptorHandler(IntPtr statePtr, IntPtr serviceUrlPtr, IntPtr method… in NativeMetadataInterceptorHandler() argument
/external/zstd/contrib/linux-kernel/test/include/linux/
Dxxhash.h495 XXH_API void xxh32_reset(struct xxh32_state *statePtr, const uint32_t seed) in xxh32_reset() argument
505 __builtin_memcpy(statePtr, &state, sizeof(state)); in xxh32_reset()
508 XXH_API void xxh64_reset(struct xxh64_state *statePtr, const uint64_t seed) in xxh64_reset() argument
518 __builtin_memcpy(statePtr, &state, sizeof(state)); in xxh64_reset()
/external/lz4/tests/
Dfuzzer.c1108 { LZ4_stream_t* const statePtr = LZ4_createStream(); in FUZ_unitTests() local
1109 FUZ_CHECKTEST(statePtr==NULL, "LZ4_createStream() allocation failed"); in FUZ_unitTests()
1110 LZ4_freeStream(statePtr); in FUZ_unitTests()
/external/zstd/lib/legacy/
Dzstd_v01.c840 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
Dzstd_v03.c1364 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
Dzstd_v04.c1343 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
Dzstd_v02.c1363 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
Dzstd_v05.c1450 #define FSEv05_GETSYMBOL(statePtr) fast ? FSEv05_decodeSymbolFast(statePtr, &bitD) : FSEv05_decodeS… in FSEv05_decompress_usingDTable_generic() argument
Dzstd_v06.c1592 #define FSEv06_GETSYMBOL(statePtr) fast ? FSEv06_decodeSymbolFast(statePtr, &bitD) : FSEv06_decodeS… in FSEv06_decompress_usingDTable_generic() argument
Dzstd_v07.c1612 #define FSEv07_GETSYMBOL(statePtr) fast ? FSEv07_decodeSymbolFast(statePtr, &bitD) : FSEv07_decodeS… in FSEv07_decompress_usingDTable_generic() argument