Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_opt.c515 … U32 const ll0, /* tells if associated literal length is 0 or not. This value must be 0 or 1 */ in ZSTD_insertBtAndGetAllMatches() argument
563 assert(ll0 <= 1); /* necessarily 1 or 0 */ in ZSTD_insertBtAndGetAllMatches()
564 { U32 const lastR = ZSTD_REP_NUM + ll0; in ZSTD_insertBtAndGetAllMatches()
566 for (repCode = ll0; repCode < lastR; repCode++) { in ZSTD_insertBtAndGetAllMatches()
598 repCode, ll0, repOffset, repLen); in ZSTD_insertBtAndGetAllMatches()
600 matches[mnum].off = repCode - ll0; in ZSTD_insertBtAndGetAllMatches()
748 U32 const ll0, in ZSTD_BtGetAllMatches() argument
758 …tAndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, 3); in ZSTD_BtGetAllMatches()
973 U32 const ll0 = !litlen; in ZSTD_compressBlock_opt_generic() local
974 …atches = ZSTD_BtGetAllMatches(matches, ms, &nextToUpdate3, ip, iend, dictMode, rep, ll0, minMatch); in ZSTD_compressBlock_opt_generic()
[all …]
H A Dzstd_compress.c4562 if (!ll0 && rawOffset == rep[0]) { in ZSTD_finalizeOffCode()
4565 repCode = 2 - ll0; in ZSTD_finalizeOffCode()
4567 repCode = 3 - ll0; in ZSTD_finalizeOffCode()
4568 } else if (ll0 && rawOffset == rep[0] - 1) { in ZSTD_finalizeOffCode()
4591 U32 ll0; in ZSTD_copySequencesToSeqStoreExplicitBlockDelim() local
4605 ll0 = litLength == 0; in ZSTD_copySequencesToSeqStoreExplicitBlockDelim()
4606 offCode = ZSTD_finalizeOffCode(inSeqs[idx].offset, updatedRepcodes.rep, ll0); in ZSTD_copySequencesToSeqStoreExplicitBlockDelim()
4607 updatedRepcodes = ZSTD_updateRep(updatedRepcodes.rep, offCode, ll0); in ZSTD_copySequencesToSeqStoreExplicitBlockDelim()
4730 { U32 ll0 = (litLength == 0); in ZSTD_copySequencesToSeqStoreNoBlockDelim() local
4731 offCode = ZSTD_finalizeOffCode(rawOffset, updatedRepcodes.rep, ll0); in ZSTD_copySequencesToSeqStoreNoBlockDelim()
[all …]
H A Dzstd_compress_internal.h396 MEM_STATIC repcodes_t ZSTD_updateRep(U32 const rep[3], U32 const offset, U32 const ll0) in ZSTD_updateRep() argument
404 U32 const repCode = offset + ll0; in ZSTD_updateRep()
/dragonfly/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c976 U32 const ll0 = (llBase == 0); in ZSTD_decodeSequence() local
978 if (LIKELY(!ll0)) in ZSTD_decodeSequence()
986 offset = ofBase + ll0 + BIT_readBitsFast(&seqState->DStream, 1); in ZSTD_decodeSequence()