Lines Matching refs:U32

82     U32* entropyWorkspace; /* entropy workspace of HUF_WORKSPACE_SIZE bytes */
87 U32 dictID;
252 const U32 forDDSDict) { in ZSTD_allocateChainTable()
776 CCtxParams->cParams.windowLog = (U32)value; in ZSTD_CCtxParams_setParameter()
782 CCtxParams->cParams.hashLog = (U32)value; in ZSTD_CCtxParams_setParameter()
788 CCtxParams->cParams.chainLog = (U32)value; in ZSTD_CCtxParams_setParameter()
794 CCtxParams->cParams.searchLog = (U32)value; in ZSTD_CCtxParams_setParameter()
800 CCtxParams->cParams.minMatch = (U32)value; in ZSTD_CCtxParams_setParameter()
805 CCtxParams->cParams.targetLength = (U32)value; in ZSTD_CCtxParams_setParameter()
876 CCtxParams->ldmParams.hashLog = (U32)value; in ZSTD_CCtxParams_setParameter()
882 CCtxParams->ldmParams.minMatchLength = (U32)value; in ZSTD_CCtxParams_setParameter()
888 CCtxParams->ldmParams.bucketSizeLog = (U32)value; in ZSTD_CCtxParams_setParameter()
894 CCtxParams->ldmParams.hashRateLog = (U32)value; in ZSTD_CCtxParams_setParameter()
902 CCtxParams->targetCBlockSize = (U32)value; in ZSTD_CCtxParams_setParameter()
1225 DEBUGLOG(4, "ZSTD_CCtx_loadDictionary_advanced (size: %u)", (U32)dictSize); in ZSTD_CCtx_loadDictionary_advanced()
1361 U32 ZSTD_cycleLog(U32 hashLog, ZSTD_strategy strat) in ZSTD_cycleLog()
1363 U32 const btScale = ((U32)strat >= (U32)ZSTD_btlazy2); in ZSTD_cycleLog()
1375 static U32 ZSTD_dictAndWindowLog(U32 windowLog, U64 srcSize, U64 dictSize) in ZSTD_dictAndWindowLog()
1396 return ZSTD_highbit32((U32)dictAndWindowSize - 1) + 1; in ZSTD_dictAndWindowLog()
1491 U32 const tSize = (U32)(srcSize + dictSize); in ZSTD_adjustCParams_internal()
1492 static U32 const hashSizeMin = 1 << ZSTD_HASHLOG_MIN; in ZSTD_adjustCParams_internal()
1493 U32 const srcLog = (tSize < hashSizeMin) ? ZSTD_HASHLOG_MIN : in ZSTD_adjustCParams_internal()
1498U32 const dictAndWindowLog = ZSTD_dictAndWindowLog(cPar.windowLog, (U64)srcSize, (U64)dictSize); in ZSTD_adjustCParams_internal()
1499 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal()
1512 U32 const maxShortCacheHashLog = 32 - ZSTD_SHORT_CACHE_TAG_BITS; in ZSTD_adjustCParams_internal()
1535 U32 const rowLog = BOUNDED(4, cPar.searchLog, 6); in ZSTD_adjustCParams_internal()
1536 U32 const maxRowHashLog = 32 - ZSTD_ROW_HASH_TAG_BITS; in ZSTD_adjustCParams_internal()
1537 U32 const maxHashLog = maxRowHashLog + rowLog; in ZSTD_adjustCParams_internal()
1593 const U32 forCCtx) in ZSTD_sizeof_matchState()
1600U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->window… in ZSTD_sizeof_matchState()
1604 size_t const tableSpace = chainSize * sizeof(U32) in ZSTD_sizeof_matchState()
1605 + hSize * sizeof(U32) in ZSTD_sizeof_matchState()
1606 + h3Size * sizeof(U32); in ZSTD_sizeof_matchState()
1608 ZSTD_cwksp_aligned64_alloc_size((MaxML+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1609 + ZSTD_cwksp_aligned64_alloc_size((MaxLL+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1610 + ZSTD_cwksp_aligned64_alloc_size((MaxOff+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1611 + ZSTD_cwksp_aligned64_alloc_size((1<<Litbits) * sizeof(U32)) in ZSTD_sizeof_matchState()
1627 (U32)chainSize, (U32)hSize, (U32)h3Size); in ZSTD_sizeof_matchState()
1634 U32 const divider = (minMatch==3 || useSequenceProducer) ? 3 : 4; in ZSTD_maxNbSeq()
1686 DEBUGLOG(5, "estimate workspace : %u", (U32)neededSpace); in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1925U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HAS… in ZSTD_reset_matchState()
1946 ms->hashTable = (U32*)ZSTD_cwksp_reserve_table(ws, hSize * sizeof(U32)); in ZSTD_reset_matchState()
1947 ms->chainTable = (U32*)ZSTD_cwksp_reserve_table(ws, chainSize * sizeof(U32)); in ZSTD_reset_matchState()
1948 ms->hashTable3 = (U32*)ZSTD_cwksp_reserve_table(ws, h3Size * sizeof(U32)); in ZSTD_reset_matchState()
1973 U32 const rowLog = BOUNDED(4, cParams->searchLog, 6); in ZSTD_reset_matchState()
2035 …(U32)pledgedSrcSize, params->cParams.windowLog, (int)params->useRowMatchFinder, (int)params->postB… in ZSTD_resetCCtx_internal()
2282 { const U32 cdictEnd = (U32)( cdict->matchState.window.nextSrc in ZSTD_resetCCtx_byAttachingCDict()
2284 const U32 cdictLen = cdictEnd - cdict->matchState.window.dictLimit; in ZSTD_resetCCtx_byAttachingCDict()
2312 static void ZSTD_copyCDictTableIntoCCtx(U32* dst, U32 const* src, size_t tableSize, in ZSTD_copyCDictTableIntoCCtx()
2319 U32 const taggedIndex = src[i]; in ZSTD_copyCDictTableIntoCCtx()
2320 U32 const index = taggedIndex >> ZSTD_SHORT_CACHE_TAG_BITS; in ZSTD_copyCDictTableIntoCCtx()
2324 ZSTD_memcpy(dst, src, tableSize * sizeof(U32)); in ZSTD_copyCDictTableIntoCCtx()
2385 { U32 const h3log = cctx->blockState.matchState.hashLog3; in ZSTD_resetCCtx_byCopyingCDict()
2388 ZSTD_memset(cctx->blockState.matchState.hashTable3, 0, h3Size * sizeof(U32)); in ZSTD_resetCCtx_byCopyingCDict()
2479 U32 const h3log = srcCCtx->blockState.matchState.hashLog3; in ZSTD_copyCCtx_internal()
2484 hSize * sizeof(U32)); in ZSTD_copyCCtx_internal()
2487 chainSize * sizeof(U32)); in ZSTD_copyCCtx_internal()
2490 h3Size * sizeof(U32)); in ZSTD_copyCCtx_internal()
2521 ZSTD_STATIC_ASSERT((U32)ZSTDb_buffered==1); in ZSTD_copyCCtx()
2539 ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const pres… in ZSTD_reduceTable_internal()
2545 U32 const reducerThreshold = reducerValue + ZSTD_WINDOW_START_INDEX; in ZSTD_reduceTable_internal()
2553 U32 newVal; in ZSTD_reduceTable_internal()
2568 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable()
2573 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable_btlazy2()
2580 static void ZSTD_reduceIndex (ZSTD_MatchState_t* ms, ZSTD_CCtx_params const* params, const U32 redu… in ZSTD_reduceIndex()
2582 { U32 const hSize = (U32)1 << params->cParams.hashLog; in ZSTD_reduceIndex()
2586 …if (ZSTD_allocateChainTable(params->cParams.strategy, params->useRowMatchFinder, (U32)ms->dedicate… in ZSTD_reduceIndex()
2587 U32 const chainSize = (U32)1 << params->cParams.chainLog; in ZSTD_reduceIndex()
2595 U32 const h3Size = (U32)1 << ms->hashLog3; in ZSTD_reduceIndex()
2613 U32 const nbSeq = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); in ZSTD_seqToCodes()
2614 U32 u; in ZSTD_seqToCodes()
2618 U32 const llv = sequences[u].litLength; in ZSTD_seqToCodes()
2619 U32 const ofCode = ZSTD_highbit32(sequences[u].offBase); in ZSTD_seqToCodes()
2620 U32 const mlv = sequences[u].mlBase; in ZSTD_seqToCodes()
2661 U32 LLtype;
2662 U32 Offtype;
2663 U32 MLtype;
3208 const U32 curr = (U32)(istart-base); in ZSTD_buildSeqStore()
3209 … if (sizeof(ptrdiff_t)==8) assert(istart - base < (ptrdiff_t)(U32)(-1)); /* ensure no overflow */ in ZSTD_buildSeqStore()
3211 ms->nextToUpdate = curr - MIN(192, (U32)(curr - ms->nextToUpdate - 384)); in ZSTD_buildSeqStore()
3271 { U32 const windowSize = (U32)1 << zc->appliedParams.cParams.windowLog; in ZSTD_buildSeqStore()
3343 …ockSequences(SeqCollector* seqCollector, const SeqStore_t* seqStore, const U32 prevRepcodes[ZSTD_R… in ZSTD_copyBlockSequences()
3366 U32 rawOffset; in ZSTD_copyBlockSequences()
3385 const U32 repcode = OFFBASE_TO_REPCODE(inSeqs[i].offBase); in ZSTD_copyBlockSequences()
3417 outSeqs[nbInSequences].litLength = (U32)lastLLSize; in ZSTD_copyBlockSequences()
3530 writeBlockHeader(void* op, size_t cSize, size_t blockSize, U32 lastBlock) in writeBlockHeader()
3532 U32 const cBlockHeader = cSize == 1 ? in writeBlockHeader()
3533 lastBlock + (((U32)bt_rle)<<1) + (U32)(blockSize << 3) : in writeBlockHeader()
3534 lastBlock + (((U32)bt_compressed)<<1) + (U32)(cSize << 3); in writeBlockHeader()
3620 huffLog = (U32)maxBits; in ZSTD_buildBlockEntropyStats_literals()
3645 DEBUGLOG(5, "set_compressed (hSize=%u)", (U32)hSize); in ZSTD_buildBlockEntropyStats_literals()
3753 U32 singleStream = litSize < 256; in ZSTD_estimateBlockSize_literal()
3775 short const* defaultNorm, U32 defaultNormLog, U32 defaultMax, in ZSTD_estimateBlockSize_symbolType()
3930 resultSeqStore->longLengthPos -= (U32)startIdx; in ZSTD_deriveSeqStoreChunk()
3951 static U32
3952 ZSTD_resolveRepcodeToRawOffset(const U32 rep[ZSTD_REP_NUM], const U32 offBase, const U32 ll0) in ZSTD_resolveRepcodeToRawOffset()
3954 U32 const adjustedRepCode = OFFBASE_TO_REPCODE(offBase) - 1 + ll0; /* [ 0 - 3 ] */ in ZSTD_resolveRepcodeToRawOffset()
3985 const SeqStore_t* const seqStore, U32 const nbSeq) in ZSTD_seqStore_resolveOffCodes()
3987 U32 idx = 0; in ZSTD_seqStore_resolveOffCodes()
3988U32 const longLitLenIdx = seqStore->longLengthType == ZSTD_llt_literalLength ? seqStore->longLengt… in ZSTD_seqStore_resolveOffCodes()
3991 U32 const ll0 = (seq->litLength == 0) && (idx != longLitLenIdx); in ZSTD_seqStore_resolveOffCodes()
3992 U32 const offBase = seq->offBase; in ZSTD_seqStore_resolveOffCodes()
3995 U32 const dRawOffset = ZSTD_resolveRepcodeToRawOffset(dRepcodes->rep, offBase, ll0); in ZSTD_seqStore_resolveOffCodes()
3996 U32 const cRawOffset = ZSTD_resolveRepcodeToRawOffset(cRepcodes->rep, offBase, ll0); in ZSTD_seqStore_resolveOffCodes()
4024 U32 lastBlock, U32 isPartition) in ZSTD_compressSeqStore_singleBlock()
4026 const U32 rleMaxLength = 25; in ZSTD_compressSeqStore_singleBlock()
4036 …ZSTD_seqStore_resolveOffCodes(dRep, cRep, seqStore, (U32)(seqStore->sequences - seqStore->sequence… in ZSTD_compressSeqStore_singleBlock()
4090 U32* splitLocations; /* Array of split indices */
4142 splits->splitLocations[splits->idx] = (U32)midIdx; in ZSTD_deriveBlockSplitsHelper()
4153 static size_t ZSTD_deriveBlockSplits(ZSTD_CCtx* zc, U32 partitions[], U32 nbSeq) in ZSTD_deriveBlockSplits()
4178 U32 lastBlock, U32 nbSeq) in ZSTD_compressBlock_splitBlock_internal()
4185 U32* const partitions = zc->blockSplitCtx.partitions; /* size == ZSTD_MAX_NB_BLOCK_SPLITS */ in ZSTD_compressBlock_splitBlock_internal()
4231 U32 const lastPartition = (i == numSplits); in ZSTD_compressBlock_splitBlock_internal()
4232 U32 lastBlockEntireSrc = 0; in ZSTD_compressBlock_splitBlock_internal()
4270 const void* src, size_t srcSize, U32 lastBlock) in ZSTD_compressBlock_splitBlock()
4272 U32 nbSeq; in ZSTD_compressBlock_splitBlock()
4288 nbSeq = (U32)(zc->seqStore.sequences - zc->seqStore.sequencesStart); in ZSTD_compressBlock_splitBlock()
4299 const void* src, size_t srcSize, U32 frame) in ZSTD_compressBlock_internal()
4305 const U32 rleMaxLength = 25; in ZSTD_compressBlock_internal()
4367 const size_t bss, U32 lastBlock) in ZSTD_compressBlock_targetCBlockSize_body()
4423 U32 lastBlock) in ZSTD_compressBlock_targetCBlockSize()
4446 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); in ZSTD_overflowCorrectIfNeeded()
4447 U32 const maxDist = (U32)1 << params->cParams.windowLog; in ZSTD_overflowCorrectIfNeeded()
4449 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()
4508 U32 lastFrameChunk) in ZSTD_compress_frameChunk()
4515 U32 const maxDist = (U32)1 << cctx->appliedParams.cParams.windowLog; in ZSTD_compress_frameChunk()
4532 U32 const lastBlock = lastFrameChunk & (blockSize == remaining); in ZSTD_compress_frameChunk()
4569 U32 const cBlockHeader = cSize == 1 ? in ZSTD_compress_frameChunk()
4570 lastBlock + (((U32)bt_rle)<<1) + (U32)(blockSize << 3) : in ZSTD_compress_frameChunk()
4571 lastBlock + (((U32)bt_compressed)<<1) + (U32)(cSize << 3); in ZSTD_compress_frameChunk()
4611 U64 pledgedSrcSize, U32 dictID) in ZSTD_writeFrameHeader()
4614 U32 const dictIDSizeCodeLength = (dictID>0) + (dictID>=256) + (dictID>=65536); /* 0-3 */ in ZSTD_writeFrameHeader()
4615U32 const dictIDSizeCode = params->fParams.noDictIDFlag ? 0 : dictIDSizeCodeLength; /* 0-3 */ in ZSTD_writeFrameHeader()
4616 U32 const checksumFlag = params->fParams.checksumFlag>0; in ZSTD_writeFrameHeader()
4617 U32 const windowSize = (U32)1 << params->cParams.windowLog; in ZSTD_writeFrameHeader()
4618 U32 const singleSegment = params->fParams.contentSizeFlag && (windowSize >= pledgedSrcSize); in ZSTD_writeFrameHeader()
4620 U32 const fcsCode = params->fParams.contentSizeFlag ? in ZSTD_writeFrameHeader()
4653 case 2 : MEM_writeLE32(op+pos, (U32)(pledgedSrcSize)); pos+=4; break; in ZSTD_writeFrameHeader()
4673 MEM_writeLE32(op, (U32)(ZSTD_MAGIC_SKIPPABLE_START + magicVariant)); in ZSTD_writeSkippableFrame()
4674 MEM_writeLE32(op+4, (U32)srcSize); in ZSTD_writeSkippableFrame()
4688 { U32 const cBlockHeader24 = 1 /*lastBlock*/ + (((U32)bt_raw)<<1); /* 0 size */ in ZSTD_writeLastEmptyBlock()
4709 U32 frame, U32 lastFrameChunk) in ZSTD_compressContinue_internal()
4837 U32 maxDictSize = ZSTD_CURRENT_MAX - ZSTD_WINDOW_START_INDEX; in ZSTD_loadDictionaryContent()
4846U32 const shortCacheMaxDictSize = (1u << (32 - ZSTD_SHORT_CACHE_TAG_BITS)) - ZSTD_WINDOW_START_IND… in ZSTD_loadDictionaryContent()
4871 ls->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ls->window.base); in ZSTD_loadDictionaryContent()
4877 …{ U32 maxDictSize = 1U << MIN(MAX(params->cParams.hashLog + 3, params->cParams.chainLog + 1), 31… in ZSTD_loadDictionaryContent()
4885 ms->nextToUpdate = (U32)(ip - ms->window.base); in ZSTD_loadDictionaryContent()
4886 ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
4952 ms->nextToUpdate = (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
4963 U32 s; in ZSTD_dictNCountRepeat()
5048 U32 offcodeMax = MaxOff; in ZSTD_loadCEntropy()
5049 if (dictContentSize <= ((U32)-1) - 128 KB) { in ZSTD_loadCEntropy()
5050U32 const maxOffset = (U32)dictContentSize + 128 KB; /* The maximum offset that must be supported … in ZSTD_loadCEntropy()
5057 { U32 u; in ZSTD_loadCEntropy()
5119 DEBUGLOG(4, "ZSTD_compress_insertDictionary (dictSize=%u)", (U32)dictSize); in ZSTD_compress_insertDictionary()
5190 cctx->dictID = (U32)dictID; in ZSTD_compressBegin_internal()
5274 U32 const cBlockHeader24 = 1 /* last block */ + (((U32)bt_raw)<<1) + 0; in ZSTD_writeEpilogue()
5283 U32 const checksum = (U32) xxh64_digest(&cctx->xxhState); in ZSTD_writeEpilogue()
5459 … cdict->entropyWorkspace = (U32*)ZSTD_cwksp_reserve_object(&cdict->workspace, HUF_WORKSPACE_SIZE); in ZSTD_initCDict_internal()
5482 assert(dictID <= (size_t)(U32)-1); in ZSTD_initCDict_internal()
5483 cdict->dictID = (U32)dictID; in ZSTD_initCDict_internal()
5735 U32 const limitedSrcSize = (U32)MIN(pledgedSrcSize, 1U << 19); in ZSTD_compressBegin_usingCDict_internal()
5736 U32 const limitedSrcLog = limitedSrcSize > 1 ? ZSTD_highbit32(limitedSrcSize - 1) + 1 : 1; in ZSTD_compressBegin_usingCDict_internal()
6000 U32 someMoreWork = 1; in ZSTD_compressStream_generic()
6023 assert((U32)flushMode <= (U32)ZSTD_e_end); in ZSTD_compressStream_generic()
6300 RETURN_ERROR_IF((U32)endOp > (U32)ZSTD_e_end, parameter_outOfBound, "invalid endDirective"); in ZSTD_compressStream2()
6395 ZSTD_validateSequence(U32 offBase, U32 matchLength, U32 minMatch, in ZSTD_validateSequence()
6396 size_t posInSrc, U32 windowLog, size_t dictSize, int useSequenceProducer) in ZSTD_validateSequence()
6398 U32 const windowSize = 1u << windowLog; in ZSTD_validateSequence()
6413 static U32 ZSTD_finalizeOffBase(U32 rawOffset, const U32 rep[ZSTD_REP_NUM], U32 ll0) in ZSTD_finalizeOffBase()
6415 U32 offBase = OFFSET_TO_OFFBASE(rawOffset); in ZSTD_finalizeOffBase()
6442 U32 idx = seqPos->idx; in ZSTD_transferSequences_wBlockDelim()
6443 U32 const startIdx = idx; in ZSTD_transferSequences_wBlockDelim()
6447 U32 dictSize; in ZSTD_transferSequences_wBlockDelim()
6452 dictSize = (U32)cctx->cdict->dictContentSize; in ZSTD_transferSequences_wBlockDelim()
6454 dictSize = (U32)cctx->prefixDict.dictSize; in ZSTD_transferSequences_wBlockDelim()
6460 U32 const litLength = inSeqs[idx].litLength; in ZSTD_transferSequences_wBlockDelim()
6461 U32 const matchLength = inSeqs[idx].matchLength; in ZSTD_transferSequences_wBlockDelim()
6462 U32 offBase; in ZSTD_transferSequences_wBlockDelim()
6467 U32 const ll0 = (litLength == 0); in ZSTD_transferSequences_wBlockDelim()
6492 U32* const rep = updatedRepcodes.rep; in ZSTD_transferSequences_wBlockDelim()
6493 U32 lastSeqIdx = idx - 1; /* index of last non-block-delimiter sequence */ in ZSTD_transferSequences_wBlockDelim()
6542 U32 idx = seqPos->idx; in ZSTD_transferSequences_noDelim()
6543 U32 startPosInSequence = seqPos->posInSequence; in ZSTD_transferSequences_noDelim()
6544 U32 endPosInSequence = seqPos->posInSequence + (U32)blockSize; in ZSTD_transferSequences_noDelim()
6550 U32 bytesAdjustment = 0; in ZSTD_transferSequences_noDelim()
6551 U32 finalMatchSplit = 0; in ZSTD_transferSequences_noDelim()
6568 U32 litLength = currSeq.litLength; in ZSTD_transferSequences_noDelim()
6569 U32 matchLength = currSeq.matchLength; in ZSTD_transferSequences_noDelim()
6570 U32 const rawOffset = currSeq.offset; in ZSTD_transferSequences_noDelim()
6571 U32 offBase; in ZSTD_transferSequences_noDelim()
6591 U32 firstHalfMatchLength; in ZSTD_transferSequences_noDelim()
6596U32 secondHalfMatchLength = currSeq.matchLength + currSeq.litLength - endPosInSequence; in ZSTD_transferSequences_noDelim()
6623 { U32 const ll0 = (litLength == 0); in ZSTD_transferSequences_noDelim()
6651 U32 const lastLLSize = (U32)(iend - ip); in ZSTD_transferSequences_noDelim()
6752 U32 const cBlockHeader24 = 1 /* last block */ + (((U32)bt_raw)<<1); in ZSTD_compressSequences_internal()
6766 U32 const lastBlock = (blockSize == remaining); in ZSTD_compressSequences_internal()
6823 U32 cBlockHeader; in ZSTD_compressSequences_internal()
6830 cBlockHeader = lastBlock + (((U32)bt_compressed)<<1) + (U32)(compressedSeqsSize << 3); in ZSTD_compressSequences_internal()
6892 U32 const checksum = (U32) xxh64_digest(&cctx->xxhState); in ZSTD_compressSequences()
7138 cctx->seqStore.longLengthPos = (U32)(longl-1); in ZSTD_convertBlockSequences()
7143 cctx->seqStore.longLengthPos = (U32)(longl-(nbSequences-1)-1); in ZSTD_convertBlockSequences()
7148 U32 const litLength = inSeqs[seqNb].litLength; in ZSTD_convertBlockSequences()
7149 U32 const matchLength = inSeqs[seqNb].matchLength; in ZSTD_convertBlockSequences()
7150 U32 const ll0 = (litLength == 0); in ZSTD_convertBlockSequences()
7151U32 const offBase = ZSTD_finalizeOffBase(inSeqs[seqNb].offset, updatedRepcodes.rep, ll0); in ZSTD_convertBlockSequences()
7161 U32* const rep = updatedRepcodes.rep; in ZSTD_convertBlockSequences()
7164 U32 lastSeqIdx = (U32)nbSequences - 2; /* index of last full sequence */ in ZSTD_convertBlockSequences()
7192 ZSTD_ALIGNED(32) U32 tmp[8]; /* temporary buffer for reduction */ in ZSTD_get1BlockSummary()
7285 U32 const cBlockHeader24 = 1 /* last block */ + (((U32)bt_raw)<<1); in ZSTD_compressSequencesAndLiterals_internal()
7296 U32 const lastBlock = (block.nbSequences == nbSequences); in ZSTD_compressSequencesAndLiterals_internal()
7343 U32 cBlockHeader; in ZSTD_compressSequencesAndLiterals_internal()
7351 cBlockHeader = lastBlock + (((U32)bt_compressed)<<1) + (U32)(compressedSeqsSize << 3); in ZSTD_compressSequencesAndLiterals_internal()
7553 U32 const tableID = (rSize <= 256 KB) + (rSize <= 128 KB) + (rSize <= 16 KB); in ZSTD_getCParams_internal()
7564 …"ZSTD_getCParams_internal selected tableID: %u row: %u strat: %u", tableID, row, (U32)cp.strategy); in ZSTD_getCParams_internal()