Home
last modified time | relevance | path

Searched refs:sampleSize (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/tests/
H A Dfuzzer.c1150 { size_t sampleSize = 0; in basicUnitTests() local
1153 memset((char*)CNBuffer+sampleSize, 'B', 256 KB - 1); in basicUnitTests()
1154 sampleSize += 256 KB - 1; in basicUnitTests()
1156 sampleSize += 96 KB; in basicUnitTests()
1157 … cSize = ZSTD_compress(compressedBuffer, ZSTD_compressBound(sampleSize), CNBuffer, sampleSize, 1); in basicUnitTests()
1160 if (regenSize!=sampleSize) goto _output_error; } in basicUnitTests()
1399 size_t sampleSize, maxTestSize, totalTestSize; in fuzzerTests() local
1432 sampleBuffer = (BYTE*)malloc(sampleSize); in fuzzerTests()
1436 crcOrig = XXH64(sampleBuffer, sampleSize, 0); in fuzzerTests()
1498 if (sampleSize > 3) { in fuzzerTests()
[all …]
H A Dparamgrill.c50 static const size_t sampleSize = 10000000; variable
645 size_t const benchedSize = sampleSize; in benchSample()