Lines Matching refs:litLength
138 U32 litLength; /* Length of literals prior to match */ member
469 MEM_STATIC U32 ZSTD_LLcode(U32 litLength) in ZSTD_LLcode() argument
480 return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_LLcode()
601 size_t litLength, const BYTE* literals, const BYTE* litLimit, in ZSTD_storeSeq() argument
606 BYTE const* const litEnd = literals + litLength; in ZSTD_storeSeq()
612 pos, (U32)litLength, (U32)matchLength, (U32)offBase_minus1); in ZSTD_storeSeq()
618 assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit); in ZSTD_storeSeq()
619 assert(literals + litLength <= litLimit); in ZSTD_storeSeq()
626 if (litLength > 16) { in ZSTD_storeSeq()
627 … ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap); in ZSTD_storeSeq()
632 seqStorePtr->lit += litLength; in ZSTD_storeSeq()
635 if (litLength>0xFFFF) { in ZSTD_storeSeq()
640 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq()