Home
last modified time | relevance | path

Searched refs:ll0 (Results 1 – 4 of 4) sorted by relevance

/linux-6.15/lib/zstd/compress/
H A Dzstd_opt.c646 assert(ll0 <= 1); /* necessarily 1 or 0 */ in ZSTD_insertBtAndGetAllMatches()
647 { U32 const lastR = ZSTD_REP_NUM + ll0; in ZSTD_insertBtAndGetAllMatches()
649 for (repCode = ll0; repCode < lastR; repCode++) { in ZSTD_insertBtAndGetAllMatches()
681 repCode, ll0, repOffset, repLen); in ZSTD_insertBtAndGetAllMatches()
828 U32 const ll0,
840 U32 const ll0, in ZSTD_btGetAllMatches_internal() argument
863 U32 const ll0, \
868 rep, ll0, lengthToBeat, ZSTD_##dictMode, mls); \
1125 U32 const ll0 = !litlen; in ZSTD_compressBlock_opt_generic() local
1126 … U32 nbMatches = getAllMatches(matches, ms, &nextToUpdate3, ip, iend, rep, ll0, minMatch); in ZSTD_compressBlock_opt_generic()
[all …]
H A Dzstd_compress_internal.h810 ZSTD_updateRep(U32 rep[ZSTD_REP_NUM], U32 const offBase, U32 const ll0) in ZSTD_updateRep() argument
817 U32 const repCode = OFFBASE_TO_REPCODE(offBase) - 1 + ll0; in ZSTD_updateRep()
834 ZSTD_newRep(U32 const rep[ZSTD_REP_NUM], U32 const offBase, U32 const ll0) in ZSTD_newRep() argument
838 ZSTD_updateRep(newReps.rep, offBase, ll0); in ZSTD_newRep()
H A Dzstd_compress.c3957 assert(ll0); in ZSTD_resolveRepcodeToRawOffset()
4008 ZSTD_updateRep(dRepcodes->rep, seq->offBase, ll0); in ZSTD_seqStore_resolveOffCodes()
4009 ZSTD_updateRep(cRepcodes->rep, offBase, ll0); in ZSTD_seqStore_resolveOffCodes()
6417 if (!ll0 && rawOffset == rep[0]) { in ZSTD_finalizeOffBase()
6420 offBase = REPCODE_TO_OFFBASE(2 - ll0); in ZSTD_finalizeOffBase()
6422 offBase = REPCODE_TO_OFFBASE(3 - ll0); in ZSTD_finalizeOffBase()
6423 } else if (ll0 && rawOffset == rep[0] - 1) { in ZSTD_finalizeOffBase()
6467 U32 const ll0 = (litLength == 0); in ZSTD_transferSequences_wBlockDelim() local
6469 ZSTD_updateRep(updatedRepcodes.rep, offBase, ll0); in ZSTD_transferSequences_wBlockDelim()
6623 { U32 const ll0 = (litLength == 0); in ZSTD_transferSequences_noDelim() local
[all …]
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress_block.c1301 U32 const ll0 = (llDInfo->baseValue == 0); in ZSTD_decodeSequence() local
1303 offset = seqState->prevOffset[ll0]; in ZSTD_decodeSequence()
1304 seqState->prevOffset[1] = seqState->prevOffset[!ll0]; in ZSTD_decodeSequence()
1307 offset = ofBase + ll0 + BIT_readBitsFast(&seqState->DStream, 1); in ZSTD_decodeSequence()