Lines Matching defs:fseMetadata
3079 * Stores symbol compression modes and fse table to fseMetadata.
3086 ZSTD_fseCTablesMetadata_t* fseMetadata,
3091 BYTE* const ostart = fseMetadata->fseTablesBuffer;
3092 BYTE* const oend = ostart + sizeof(fseMetadata->fseTablesBuffer);
3106 fseMetadata->llType = (symbolEncodingType_e) stats.LLtype;
3107 fseMetadata->ofType = (symbolEncodingType_e) stats.Offtype;
3108 fseMetadata->mlType = (symbolEncodingType_e) stats.MLtype;
3109 fseMetadata->lastCountSize = stats.lastCountSize;
3135 entropyMetadata->fseMetadata.fseTablesSize =
3139 &entropyMetadata->fseMetadata,
3141 FORWARD_IF_ERROR(entropyMetadata->fseMetadata.fseTablesSize, "ZSTD_buildBlockEntropyStats_sequences failed");
3214 const ZSTD_fseCTablesMetadata_t* fseMetadata,
3220 cSeqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, nbSeq, MaxOff,
3224 cSeqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->llType, llCodeTable, nbSeq, MaxLL,
3228 cSeqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, nbSeq, MaxML,
3232 if (writeEntropy) cSeqSizeEstimate += fseMetadata->fseTablesSize;
3250 nbSeq, &entropy->fse, &entropyMetadata->fseMetadata,