HomeSort by: relevance | last modified time | path
    Searched defs:samplesBuffSize (Results 1 - 1 of 1) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 988 size_t const samplesBuffSize = ZDICT_totalSampleSize(samplesSizes, nbSamples);
995 if (samplesBuffSize < ZDICT_MIN_SAMPLES_SIZE) { free(dictList); return ERROR(dictionaryCreation_failed); } /* not enough source to create dictionary */
1002 samplesBuffer, samplesBuffSize,
1017 if ((pos > samplesBuffSize) || ((pos + length) > samplesBuffSize)) {
1033 if (samplesBuffSize < 10 * targetDictSize)
1034 DISPLAYLEVEL(2, "! consider increasing the number of samples (total size : %u MB)\n", (unsigned)(samplesBuffSize>>20));

Completed in 15 milliseconds