Lines Matching refs:totalCompressedSize

800   size_t totalCompressedSize = ERROR(GENERIC);  in COVER_checkTotalCompressedSize()  local
826 totalCompressedSize = dictBufferCapacity; in COVER_checkTotalCompressedSize()
833 totalCompressedSize = size; in COVER_checkTotalCompressedSize()
836 totalCompressedSize += size; in COVER_checkTotalCompressedSize()
844 return totalCompressedSize; in COVER_checkTotalCompressedSize()
912 size_t compressedSize = selection.totalCompressedSize; in COVER_best_finish()
959 return (ZSTD_isError(selection.totalCompressedSize) || !selection.dictContent); in COVER_dictSelectionIsError()
968 …ples, size_t nbSamples, ZDICT_cover_params_t params, size_t* offsets, size_t totalCompressedSize) { in COVER_selectDict() argument
996 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes, in COVER_selectDict()
1001 if (ZSTD_isError(totalCompressedSize)) { in COVER_selectDict()
1004 return COVER_dictSelectionError(totalCompressedSize); in COVER_selectDict()
1008 COVER_dictSelection_t selection = { largestDictbuffer, dictContentSize, totalCompressedSize }; in COVER_selectDict()
1014 largestCompressed = totalCompressedSize; in COVER_selectDict()
1031 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes, in COVER_selectDict()
1036 if (ZSTD_isError(totalCompressedSize)) { in COVER_selectDict()
1039 return COVER_dictSelectionError(totalCompressedSize); in COVER_selectDict()
1042 if (totalCompressedSize <= largestCompressed * regressionTolerance) { in COVER_selectDict()
1043 … COVER_dictSelection_t selection = { candidateDictBuffer, dictContentSize, totalCompressedSize }; in COVER_selectDict()
1050 totalCompressedSize = largestCompressed; in COVER_selectDict()
1052 COVER_dictSelection_t selection = { largestDictbuffer, dictContentSize, totalCompressedSize }; in COVER_selectDict()
1080 size_t totalCompressedSize = ERROR(GENERIC); in COVER_tryParameters() local
1102 totalCompressedSize); in COVER_tryParameters()