Home | History | Annotate | Download | only in dictBuilder

Lines Matching defs:totalCompressedSize

803   size_t totalCompressedSize = ERROR(GENERIC);
829 totalCompressedSize = dictBufferCapacity;
836 totalCompressedSize = size;
839 totalCompressedSize += size;
847 return totalCompressedSize;
917 size_t compressedSize = selection.totalCompressedSize;
963 ds.totalCompressedSize = csz;
972 return (ZSTD_isError(selection.totalCompressedSize) || !selection.dictContent);
981 size_t nbCheckSamples, size_t nbSamples, ZDICT_cover_params_t params, size_t* offsets, size_t totalCompressedSize) {
1009 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes,
1014 if (ZSTD_isError(totalCompressedSize)) {
1017 return COVER_dictSelectionError(totalCompressedSize);
1022 return setDictSelection(largestDictbuffer, dictContentSize, totalCompressedSize);
1026 largestCompressed = totalCompressedSize;
1043 totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes,
1048 if (ZSTD_isError(totalCompressedSize)) {
1051 return COVER_dictSelectionError(totalCompressedSize);
1054 if ((double)totalCompressedSize <= (double)largestCompressed * regressionTolerance) {
1056 return setDictSelection( candidateDictBuffer, dictContentSize, totalCompressedSize );
1061 totalCompressedSize = largestCompressed;
1063 return setDictSelection( largestDictbuffer, dictContentSize, totalCompressedSize );
1088 size_t totalCompressedSize = ERROR(GENERIC);
1110 totalCompressedSize);