Lines Matching refs:litLength
85 U32 litLength; /* Length of literals prior to match */ member
364 MEM_STATIC U32 ZSTD_LLcode(U32 litLength) in ZSTD_LLcode() argument
375 return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_LLcode()
505 void ZSTD_storeSeq(seqStore_t* seqStorePtr, size_t litLength, const BYTE* literals, const BYTE* lit… in ZSTD_storeSeq() argument
508 BYTE const* const litEnd = literals + litLength; in ZSTD_storeSeq()
514 pos, (U32)litLength, (U32)mlBase+MINMATCH, (U32)offCode); in ZSTD_storeSeq()
520 assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit); in ZSTD_storeSeq()
521 assert(literals + litLength <= litLimit); in ZSTD_storeSeq()
528 if (litLength > 16) { in ZSTD_storeSeq()
529 … ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap); in ZSTD_storeSeq()
534 seqStorePtr->lit += litLength; in ZSTD_storeSeq()
537 if (litLength>0xFFFF) { in ZSTD_storeSeq()
542 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq()