Lines Matching refs:totalCompressedSize

792   size_t totalCompressedSize = ERROR(GENERIC);  in COVER_checkTotalCompressedSize()  local
818 totalCompressedSize = dictBufferCapacity; in COVER_checkTotalCompressedSize()
825 totalCompressedSize = size; in COVER_checkTotalCompressedSize()
828 totalCompressedSize += size; in COVER_checkTotalCompressedSize()
836 return totalCompressedSize; in COVER_checkTotalCompressedSize()
904 size_t compressedSize = selection.totalCompressedSize; in COVER_best_finish()
951 return (ZSTD_isError(selection.totalCompressedSize) || !selection.dictContent); in COVER_dictSelectionIsError()
960 …ples, size_t nbSamples, ZDICT_cover_params_t params, size_t* offsets, size_t totalCompressedSize) { in COVER_selectDict() argument
988 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes, in COVER_selectDict()
993 if (ZSTD_isError(totalCompressedSize)) { in COVER_selectDict()
996 return COVER_dictSelectionError(totalCompressedSize); in COVER_selectDict()
1000 COVER_dictSelection_t selection = { largestDictbuffer, dictContentSize, totalCompressedSize }; in COVER_selectDict()
1006 largestCompressed = totalCompressedSize; in COVER_selectDict()
1023 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes, in COVER_selectDict()
1028 if (ZSTD_isError(totalCompressedSize)) { in COVER_selectDict()
1031 return COVER_dictSelectionError(totalCompressedSize); in COVER_selectDict()
1034 if (totalCompressedSize <= largestCompressed * regressionTolerance) { in COVER_selectDict()
1035 … COVER_dictSelection_t selection = { candidateDictBuffer, dictContentSize, totalCompressedSize }; in COVER_selectDict()
1042 totalCompressedSize = largestCompressed; in COVER_selectDict()
1044 COVER_dictSelection_t selection = { largestDictbuffer, dictContentSize, totalCompressedSize }; in COVER_selectDict()
1071 size_t totalCompressedSize = ERROR(GENERIC); in COVER_tryParameters() local
1093 totalCompressedSize); in COVER_tryParameters()