Lines Matching refs:litLength
186 U32 litLength; member
298 MEM_STATIC U32 ZSTD_LLcode(U32 litLength) in ZSTD_LLcode() argument
309 return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_LLcode()
439 void ZSTD_storeSeq(seqStore_t* seqStorePtr, size_t litLength, const BYTE* literals, const BYTE* lit… in ZSTD_storeSeq() argument
442 BYTE const* const litEnd = literals + litLength; in ZSTD_storeSeq()
448 pos, (U32)litLength, (U32)mlBase+MINMATCH, (U32)offCode); in ZSTD_storeSeq()
454 assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit); in ZSTD_storeSeq()
455 assert(literals + litLength <= litLimit); in ZSTD_storeSeq()
462 if (litLength > 16) { in ZSTD_storeSeq()
463 … ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap); in ZSTD_storeSeq()
468 seqStorePtr->lit += litLength; in ZSTD_storeSeq()
471 if (litLength>0xFFFF) { in ZSTD_storeSeq()
476 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq()