Searched refs:statePtr (Results 1 – 3 of 3) sorted by relevance
/u-boot/lib/zstd/ |
A D | fse.h | 402 statePtr->value = (ptrdiff_t)1 << tableLog; in FSE_initCState() 403 statePtr->stateTable = u16ptr + 2; in FSE_initCState() 405 statePtr->stateLog = tableLog; in FSE_initCState() 413 FSE_initCState(statePtr, ct); in FSE_initCState2() 416 const U16 *stateTable = (const U16 *)(statePtr->stateTable); in FSE_initCState2() 418 statePtr->value = (nbBitsOut << 16) - symbolTT.deltaNbBits; in FSE_initCState2() 419 statePtr->value = stateTable[(statePtr->value >> nbBitsOut) + symbolTT.deltaFindState]; in FSE_initCState2() 426 const U16 *const stateTable = (const U16 *)(statePtr->stateTable); in FSE_encodeSymbol() 428 BIT_addBits(bitC, statePtr->value, nbBitsOut); in FSE_encodeSymbol() 429 statePtr->value = stateTable[(statePtr->value >> nbBitsOut) + symbolTT.deltaFindState]; in FSE_encodeSymbol() [all …]
|
A D | fse_decompress.c | 202 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
|
/u-boot/lib/ |
A D | xxhash.c | 212 void xxh32_reset(struct xxh32_state *statePtr, const uint32_t seed) in xxh32_reset() argument 222 memcpy(statePtr, &state, sizeof(state)); in xxh32_reset() 226 void xxh64_reset(struct xxh64_state *statePtr, const uint64_t seed) in xxh64_reset() argument 236 memcpy(statePtr, &state, sizeof(state)); in xxh64_reset()
|
Completed in 10 milliseconds