Lines Matching defs:tableLog

324      {  1,  1,  1, LL_DEFAULTNORMLOG},  /* header : fastMode, tableLog */
362 { 1, 1, 1, OF_DEFAULTNORMLOG}, /* header : fastMode, tableLog */
385 { 1, 1, 1, ML_DEFAULTNORMLOG}, /* header : fastMode, tableLog */
428 DTableH->tableLog = 0;
447 unsigned tableLog, void* wksp, size_t wkspSize)
451 U32 const tableSize = 1 << tableLog;
460 assert(tableLog <= MaxFSELog);
465 DTableH.tableLog = tableLog;
467 { S16 const largeLimit= (S16)(1 << (tableLog-1));
554 tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32(nextState) );
567 unsigned tableLog, void* wksp, size_t wkspSize)
570 baseValue, nbAdditionalBits, tableLog, wksp, wkspSize);
577 unsigned tableLog, void* wksp, size_t wkspSize)
580 baseValue, nbAdditionalBits, tableLog, wksp, wkspSize);
587 unsigned tableLog, void* wksp, size_t wkspSize, int bmi2)
592 baseValue, nbAdditionalBits, tableLog, wksp, wkspSize);
598 baseValue, nbAdditionalBits, tableLog, wksp, wkspSize);
638 { unsigned tableLog;
640 size_t const headerSize = FSE_readNCount(norm, &max, &tableLog, src, srcSize);
642 RETURN_ERROR_IF(tableLog > maxLog, corruption_detected, "");
643 ZSTD_buildFSETable(DTableSpace, norm, max, baseValue, nbAdditionalBits, tableLog, wksp, wkspSize, bmi2);
1142 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog);
1144 (U32)DStatePtr->state, DTableH->tableLog);
1959 U32 const tableLog = ((const ZSTD_seqSymbol_header*)ptr)[0].tableLog;
1961 U32 const max = 1 << tableLog;
1963 DEBUGLOG(5, "ZSTD_getLongOffsetsShare: (tableLog=%u)", tableLog);
1970 assert(tableLog <= OffFSELog);
1971 total <<= (OffFSELog - tableLog); /* scale to OffFSELog */