Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/zstd/tests/
Dzstreamtest.c968 …ic int fuzzerTests(U32 seed, U32 nbTests, unsigned startTest, double compressibility, int bigTests) in fuzzerTests() argument
970 U32 const maxSrcLog = bigTests ? 24 : 22; in fuzzerTests()
990 U32 const cLevelMax = bigTests ? (U32)ZSTD_maxCLevel() : g_cLevelMax_smallTests; in fuzzerTests()
1220 …int fuzzerTests_MT(U32 seed, U32 nbTests, unsigned startTest, double compressibility, int bigTests) in fuzzerTests_MT() argument
1222 const U32 maxSrcLog = bigTests ? 24 : 22; in fuzzerTests_MT()
1242 int const cLevelMax = bigTests ? (U32)ZSTD_maxCLevel()-1 : g_cLevelMax_smallTests; in fuzzerTests_MT()
1243 U32 const nbThreadsMax = bigTests ? 4 : 2; in fuzzerTests_MT()
1504 …(U32 seed, U32 nbTests, unsigned startTest, double compressibility, int bigTests, U32 const useOpa… in fuzzerTests_newAPI() argument
1506 U32 const maxSrcLog = bigTests ? 24 : 22; in fuzzerTests_newAPI()
1527 U32 const cLevelMax = bigTests ? (U32)ZSTD_maxCLevel()-1 : g_cLevelMax_smallTests; in fuzzerTests_newAPI()
[all …]
Dfuzzer.c1354 …eed, U32 nbTests, unsigned startTest, U32 const maxDurationS, double compressibility, int bigTests) in fuzzerTests() argument
1374 int const cLevelLimiter = bigTests ? 3 : 2; in fuzzerTests()
1720 int bigTests = 1; in main() local
1735 if (!strcmp(argument, "--no-big-tests")) { bigTests=0; continue; } in main()
1816 result = fuzzerTests(seed, nbTests, testNb, maxDuration, ((double)proba) / 100, bigTests); in main()