Lines Matching refs:litLength
132 U32 litLength; /* Length of literals prior to match */
140 stopped. posInSequence <= seq[pos].litLength + seq[pos].matchLength */
160 unsigned* litLengthFreq; /* table of litLength statistics, of size (MaxLL+1) */
167 U32 litLengthSum; /* nb of litLength codes */
457 MEM_STATIC U32 ZSTD_LLcode(U32 litLength)
468 return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength];
589 size_t litLength, const BYTE* literals, const BYTE* litLimit,
594 BYTE const* const litEnd = literals + litLength;
600 pos, (U32)litLength, (U32)matchLength, (U32)offBase_minus1);
606 assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit);
607 assert(literals + litLength <= litLimit);
614 if (litLength > 16) {
615 ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap);
620 seqStorePtr->lit += litLength;
623 if (litLength>0xFFFF) {
628 seqStorePtr->sequences[0].litLength = (U16)litLength;