Searched refs:ll0 (Results 1 – 4 of 4) sorted by relevance
/linux-6.3-rc2/lib/zstd/compress/ |
A D | zstd_opt.c | 610 assert(ll0 <= 1); /* necessarily 1 or 0 */ in ZSTD_insertBtAndGetAllMatches() 611 { U32 const lastR = ZSTD_REP_NUM + ll0; in ZSTD_insertBtAndGetAllMatches() 613 for (repCode = ll0; repCode < lastR; repCode++) { in ZSTD_insertBtAndGetAllMatches() 645 repCode, ll0, repOffset, repLen); in ZSTD_insertBtAndGetAllMatches() 792 U32 const ll0, 802 U32 const ll0, in ZSTD_btGetAllMatches_internal() argument 825 U32 const ll0, \ 830 rep, ll0, lengthToBeat, ZSTD_##dictMode, mls); \ 1082 U32 const ll0 = !litlen; in ZSTD_compressBlock_opt_generic() local 1083 … U32 nbMatches = getAllMatches(matches, ms, &nextToUpdate3, ip, iend, rep, ll0, minMatch); in ZSTD_compressBlock_opt_generic() [all …]
|
A D | zstd_compress_internal.h | 652 ZSTD_updateRep(U32 rep[ZSTD_REP_NUM], U32 const offBase_minus1, U32 const ll0) in ZSTD_updateRep() argument 659 U32 const repCode = STORED_REPCODE(offBase_minus1) - 1 + ll0; in ZSTD_updateRep() 676 ZSTD_newRep(U32 const rep[ZSTD_REP_NUM], U32 const offBase_minus1, U32 const ll0) in ZSTD_newRep() argument 680 ZSTD_updateRep(newReps.rep, offBase_minus1, ll0); in ZSTD_newRep()
|
A D | zstd_compress.c | 3379 U32 const ll0 = (seq->litLength == 0); in ZSTD_seqStore_resolveOffCodes() local 3396 ZSTD_updateRep(dRepcodes->rep, OFFBASE_TO_STORED(seq->offBase), ll0); in ZSTD_seqStore_resolveOffCodes() 3397 ZSTD_updateRep(cRepcodes->rep, offCode, ll0); in ZSTD_seqStore_resolveOffCodes() 5583 if (!ll0 && rawOffset == rep[0]) { in ZSTD_finalizeOffCode() 5586 offCode = STORE_REPCODE(2 - ll0); in ZSTD_finalizeOffCode() 5588 offCode = STORE_REPCODE(3 - ll0); in ZSTD_finalizeOffCode() 5589 } else if (ll0 && rawOffset == rep[0] - 1) { in ZSTD_finalizeOffCode() 5620 U32 const ll0 = (litLength == 0); in ZSTD_copySequencesToSeqStoreExplicitBlockDelim() local 5623 ZSTD_updateRep(updatedRepcodes.rep, offCode, ll0); in ZSTD_copySequencesToSeqStoreExplicitBlockDelim() 5744 { U32 const ll0 = (litLength == 0); in ZSTD_copySequencesToSeqStoreNoBlockDelim() local [all …]
|
/linux-6.3-rc2/lib/zstd/decompress/ |
A D | zstd_decompress_block.c | 1219 U32 const ll0 = (llDInfo->baseValue == 0); local 1221 offset = seqState->prevOffset[ll0]; 1222 seqState->prevOffset[1] = seqState->prevOffset[!ll0]; 1225 offset = ofBase + ll0 + BIT_readBitsFast(&seqState->DStream, 1);
|
Completed in 31 milliseconds