Lines Matching refs:seqs
7187 BlockSummary ZSTD_get1BlockSummary(const ZSTD_Sequence* seqs, size_t nbSeqs) in ZSTD_get1BlockSummary() argument
7199 __m256i data = _mm256_loadu_si256((const __m256i*)(const void*)&seqs[i]); in ZSTD_get1BlockSummary()
7218 lSum += seqs[i].litLength; in ZSTD_get1BlockSummary()
7219 mSum += seqs[i].matchLength; in ZSTD_get1BlockSummary()
7220 if (seqs[i].matchLength == 0) break; /* end of block */ in ZSTD_get1BlockSummary()
7239 BlockSummary ZSTD_get1BlockSummary(const ZSTD_Sequence* seqs, size_t nbSeqs) in ZSTD_get1BlockSummary() argument
7244 assert(seqs); in ZSTD_get1BlockSummary()
7246 totalMatchSize += seqs[n].matchLength; in ZSTD_get1BlockSummary()
7247 litSize += seqs[n].litLength; in ZSTD_get1BlockSummary()
7248 if (seqs[n].matchLength == 0) { in ZSTD_get1BlockSummary()
7249 assert(seqs[n].offset == 0); in ZSTD_get1BlockSummary()