Searched refs:statePtr (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12-stable/sys/contrib/zstd/lib/common/ |
| D | fse.h | 537 MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) in FSE_initCState() argument 542 statePtr->value = (ptrdiff_t)1<<tableLog; in FSE_initCState() 543 statePtr->stateTable = u16ptr+2; in FSE_initCState() 544 statePtr->symbolTT = ((const U32*)ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1)); in FSE_initCState() 545 statePtr->stateLog = tableLog; in FSE_initCState() 552 MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) in FSE_initCState2() argument 554 FSE_initCState(statePtr, ct); in FSE_initCState2() 555 …ompressionTransform symbolTT = ((const FSE_symbolCompressionTransform*)(statePtr->symbolTT))[symbo… in FSE_initCState2() 556 const U16* stateTable = (const U16*)(statePtr->stateTable); in FSE_initCState2() 558 statePtr->value = (nbBitsOut << 16) - symbolTT.deltaNbBits; in FSE_initCState2() [all …]
|
| D | xxhash.h | 188 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr); 191 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr); 196 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed); 197 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t lengt… 198 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr); 200 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed); 201 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t lengt… 202 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
|
| D | xxhash.c | 548 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) in XXH32_freeState() argument 550 XXH_free(statePtr); in XXH32_freeState() 558 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) in XXH64_freeState() argument 560 XXH_free(statePtr); in XXH64_freeState() 567 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) in XXH32_reset() argument 575 memcpy(statePtr, &state, sizeof(state)); in XXH32_reset() 580 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) in XXH64_reset() argument 588 memcpy(statePtr, &state, sizeof(state)); in XXH64_reset()
|
| D | fse_decompress.c | 220 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
|
| /freebsd-12-stable/sys/contrib/zstd/lib/legacy/ |
| D | zstd_v01.c | 834 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
|
| D | zstd_v03.c | 1349 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
|
| D | zstd_v02.c | 1348 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
|
| D | zstd_v04.c | 1390 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
|
| D | zstd_v05.c | 1443 #define FSEv05_GETSYMBOL(statePtr) fast ? FSEv05_decodeSymbolFast(statePtr, &bitD) : FSEv05_decodeS… in FSEv05_decompress_usingDTable_generic() argument
|
| D | zstd_v06.c | 1588 #define FSEv06_GETSYMBOL(statePtr) fast ? FSEv06_decodeSymbolFast(statePtr, &bitD) : FSEv06_decodeS… in FSEv06_decompress_usingDTable_generic() argument
|
| D | zstd_v07.c | 1608 #define FSEv07_GETSYMBOL(statePtr) fast ? FSEv07_decodeSymbolFast(statePtr, &bitD) : FSEv07_decodeS… in FSEv07_decompress_usingDTable_generic() argument
|