Lines Matching refs:litLength
132 U32 litLength; /* Length of literals prior to match */ member
457 MEM_STATIC U32 ZSTD_LLcode(U32 litLength) in ZSTD_LLcode() argument
468 return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_LLcode()
589 size_t litLength, const BYTE* literals, const BYTE* litLimit, in ZSTD_storeSeq() argument
594 BYTE const* const litEnd = literals + litLength; in ZSTD_storeSeq()
600 pos, (U32)litLength, (U32)matchLength, (U32)offBase_minus1); in ZSTD_storeSeq()
606 assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit); in ZSTD_storeSeq()
607 assert(literals + litLength <= litLimit); in ZSTD_storeSeq()
614 if (litLength > 16) { in ZSTD_storeSeq()
615 … ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap); in ZSTD_storeSeq()
620 seqStorePtr->lit += litLength; in ZSTD_storeSeq()
623 if (litLength>0xFFFF) { in ZSTD_storeSeq()
628 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq()