Lines Matching refs:testNb

132     U32 testNb=0;  in basicUnitTests()  local
149 DISPLAYLEVEL(4, "test%3i : compress %u bytes : ", testNb++, COMPRESSIBLE_NOISE_LENGTH); in basicUnitTests()
164 DISPLAYLEVEL(4, "test%3i : decompress skippable frame : ", testNb++); in basicUnitTests()
174 DISPLAYLEVEL(4, "test%3i : decompress %u bytes : ", testNb++, COMPRESSIBLE_NOISE_LENGTH); in basicUnitTests()
184 …DISPLAYLEVEL(4, "test%3i : ZBUFF_recommendedCInSize : ", testNb++); { assert(ZBUFF_recommendedCInS… in basicUnitTests()
185 …DISPLAYLEVEL(4, "test%3i : ZBUFF_recommendedCOutSize : ", testNb++); { assert(ZBUFF_recommendedCOu… in basicUnitTests()
186 …DISPLAYLEVEL(4, "test%3i : ZBUFF_recommendedDInSize : ", testNb++); { assert(ZBUFF_recommendedDInS… in basicUnitTests()
187 …DISPLAYLEVEL(4, "test%3i : ZBUFF_recommendedDOutSize : ", testNb++); { assert(ZBUFF_recommendedDOu… in basicUnitTests()
190 DISPLAYLEVEL(4, "test%3i : check decompressed result : ", testNb++); in basicUnitTests()
198 DISPLAYLEVEL(4, "test%3i : decompress byte-by-byte : ", testNb++); in basicUnitTests()
219 DISPLAYLEVEL(4, "test%3i : check decompressed result : ", testNb++); in basicUnitTests()
265 DISPLAY(" (seed %u, test nb %u) \n", seed, testNb); goto _output_error; }
280 U32 testNb = 0; in fuzzerTests() local
310 for (testNb=1; testNb < startTest; testNb++) in fuzzerTests()
314 for ( ; (testNb <= nbTests) || (UTIL_clockSpanMicro(startClock) < g_clockTime) ; testNb++ ) { in fuzzerTests()
326 DISPLAYUPDATE(2, "\r%6u", testNb); in fuzzerTests()
327 if (nbTests >= testNb) DISPLAYUPDATE(2, "/%6u ", nbTests); in fuzzerTests()
452 DISPLAY("\r%u fuzzer tests completed \n", testNb); in fuzzerTests()
499 int testNb = 0; in main() local
570 testNb=0; in main()
572 testNb *= 10; in main()
573 testNb += *argument - '0'; in main()
608 if (testNb==0) { in main()
616 result = fuzzerTests(seed, nbTests, testNb, ((double)proba) / 100); in main()