Home | History | Annotate | Download | only in dictBuilder

Lines Matching refs:totalCompressedSize

844   size_t totalCompressedSize = ERROR(GENERIC);
870 totalCompressedSize = dictBufferCapacity;
877 totalCompressedSize = size;
880 totalCompressedSize += size;
888 return totalCompressedSize;
958 size_t compressedSize = selection.totalCompressedSize;
1004 ds.totalCompressedSize = csz;
1013 return (ZSTD_isError(selection.totalCompressedSize) || !selection.dictContent);
1022 size_t nbCheckSamples, size_t nbSamples, ZDICT_cover_params_t params, size_t* offsets, size_t totalCompressedSize) {
1050 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes,
1055 if (ZSTD_isError(totalCompressedSize)) {
1058 return COVER_dictSelectionError(totalCompressedSize);
1063 return setDictSelection(largestDictbuffer, dictContentSize, totalCompressedSize);
1067 largestCompressed = totalCompressedSize;
1084 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes,
1089 if (ZSTD_isError(totalCompressedSize)) {
1092 return COVER_dictSelectionError(totalCompressedSize);
1095 if ((double)totalCompressedSize <= (double)largestCompressed * regressionTolerance) {
1097 return setDictSelection( candidateDictBuffer, dictContentSize, totalCompressedSize );
1102 totalCompressedSize = largestCompressed;
1104 return setDictSelection( largestDictbuffer, dictContentSize, totalCompressedSize );
1129 size_t totalCompressedSize = ERROR(GENERIC);
1151 totalCompressedSize);