Lines Matching refs:nbSeq

185     size_t const nbSeq = seqStorePtr->sequences - seqStorePtr->sequencesStart;  in ZSTD_buildSuperBlockEntropy_sequences()  local
191 DEBUGLOG(5, "ZSTD_buildSuperBlockEntropy_sequences (nbSeq=%zu)", nbSeq); in ZSTD_buildSuperBlockEntropy_sequences()
200 …size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, llCodeTable, nbSeq, workspace, wk… in ZSTD_buildSuperBlockEntropy_sequences()
204 countWksp, max, mostFrequent, nbSeq, in ZSTD_buildSuperBlockEntropy_sequences()
211 … countWksp, max, llCodeTable, nbSeq, LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_buildSuperBlockEntropy_sequences()
223 …size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, ofCodeTable, nbSeq, workspace, wk… in ZSTD_buildSuperBlockEntropy_sequences()
229 countWksp, max, mostFrequent, nbSeq, in ZSTD_buildSuperBlockEntropy_sequences()
235 … countWksp, max, ofCodeTable, nbSeq, OF_defaultNorm, OF_defaultNormLog, DefaultMaxOff, in ZSTD_buildSuperBlockEntropy_sequences()
247 …size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, mlCodeTable, nbSeq, workspace, wk… in ZSTD_buildSuperBlockEntropy_sequences()
251 countWksp, max, mostFrequent, nbSeq, in ZSTD_buildSuperBlockEntropy_sequences()
257 … countWksp, max, mlCodeTable, nbSeq, ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_buildSuperBlockEntropy_sequences()
408 …ompressedSize(seqStore_t const* seqStore, const seqDef* sequences, size_t nbSeq, size_t litSize, i… in ZSTD_seqDecompressedSize() argument
410 const seqDef* const send = sequences + nbSeq; in ZSTD_seqDecompressedSize()
441 const seqDef* sequences, size_t nbSeq, in ZSTD_compressSubBlock_sequences() argument
453 …compressSubBlock_sequences (nbSeq=%zu, writeEntropy=%d, longOffsets=%d)", nbSeq, writeEntropy, lon… in ZSTD_compressSubBlock_sequences()
459 if (nbSeq < 0x7F) in ZSTD_compressSubBlock_sequences()
460 *op++ = (BYTE)nbSeq; in ZSTD_compressSubBlock_sequences()
461 else if (nbSeq < LONGNBSEQ) in ZSTD_compressSubBlock_sequences()
462 op[0] = (BYTE)((nbSeq>>8) + 0x80), op[1] = (BYTE)nbSeq, op+=2; in ZSTD_compressSubBlock_sequences()
464 op[0]=0xFF, MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)), op+=3; in ZSTD_compressSubBlock_sequences()
465 if (nbSeq==0) { in ZSTD_compressSubBlock_sequences()
492 sequences, nbSeq, in ZSTD_compressSubBlock_sequences()
541 const seqDef* sequences, size_t nbSeq, in ZSTD_compressSubBlock() argument
555 litSize, nbSeq, writeLitEntropy, writeSeqEntropy, lastBlock); in ZSTD_compressSubBlock()
565 sequences, nbSeq, in ZSTD_compressSubBlock()
607 size_t nbSeq, const FSE_CTable* fseCTable, in ZSTD_estimateSubBlockSize_symbolType() argument
615 const BYTE* const ctEnd = ctStart + nbSeq; in ZSTD_estimateSubBlockSize_symbolType()
619 HIST_countFast_wksp(countWksp, &max, codeTable, nbSeq, workspace, wkspSize); /* can't fail */ in ZSTD_estimateSubBlockSize_symbolType()
631 if (ZSTD_isError(cSymbolTypeSizeEstimateInBits)) return nbSeq * 10; in ZSTD_estimateSubBlockSize_symbolType()
643 size_t nbSeq, in ZSTD_estimateSubBlockSize_sequences() argument
652 nbSeq, fseTables->offcodeCTable, NULL, in ZSTD_estimateSubBlockSize_sequences()
656 nbSeq, fseTables->litlengthCTable, LL_bits, in ZSTD_estimateSubBlockSize_sequences()
660 nbSeq, fseTables->matchlengthCTable, ML_bits, in ZSTD_estimateSubBlockSize_sequences()
671 size_t nbSeq, in ZSTD_estimateSubBlockSize() argument
681nbSeq, &entropy->fse, &entropyMetadata->fseMetadata, in ZSTD_estimateSubBlockSize()