Home
last modified time | relevance | path

Searched refs:numPassed (Results 1 – 9 of 9) sorted by relevance

/external/deqp/framework/common/
DtcuTestSessionExecutor.hpp46 numPassed = 0; in clear()
55 int numPassed; //!< Number of cases passed. member in tcu::TestRunStatus
DtcuApp.cpp195 … %d/%d (%.1f%%)\n", result.numPassed, result.numExecuted, (result.numExecuted > 0 ? (100.0f *… in iterate()
DtcuTestSessionExecutor.cpp274 case QP_TEST_RESULT_PASS: m_status.numPassed += 1; break; in leaveTestCase()
/external/deqp/external/vulkancts/modules/vulkan/clipping/
DvktClippingTests.cpp435 int numPassed = 0; in testPrimitivesInside() local
464 ++numPassed; in testPrimitivesInside()
467 …return (numPassed == DE_LENGTH_OF_ARRAY(cases) ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fa… in testPrimitivesInside()
490 int numPassed = 0; in testPrimitivesOutside() local
521 ++numPassed; in testPrimitivesOutside()
524 …return (numPassed == DE_LENGTH_OF_ARRAY(cases) ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fa… in testPrimitivesOutside()
540 int numPassed = 0; in testPrimitivesDepthClamp() local
612 ++numPassed; in testPrimitivesDepthClamp()
615 …return (numPassed == numCases ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fail("Rendered imag… in testPrimitivesDepthClamp()
632 int numPassed = 0; in testPrimitivesDepthClip() local
[all …]
/external/deqp/modules/gles31/functional/
Des31fIndirectComputeDispatchTests.cpp314 const deUint32 numPassed = *(const deUint32*)(srcPtr + RESULT_BLOCK_NUM_PASSED_OFFSET); in verifyResultBuffer() local
318 if (numPassed != expectedCount) in verifyResultBuffer()
321 << ": got numPassed = " << numPassed << ", expected " << expectedCount in verifyResultBuffer()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeIndirectComputeDispatchTests.cpp344 const deUint32 numPassed = *(const deUint32*)(srcPtr + RESULT_BLOCK_NUM_PASSED_OFFSET); in verifyResultBuffer() local
349 if (numPassed != expectedCount) in verifyResultBuffer()
356 << ": got numPassed = " << numPassed << ", expected " << expectedCount in verifyResultBuffer()
/external/deqp/execserver/tools/
DxsTest.cpp224 int numPassed = 0; in runCases() local
230 numPassed += 1; in runCases()
233 printf("\n %d/%d passed!\n", numPassed, numCases); in runCases()
/external/icu/icu4c/source/test/intltest/
Dlocalematchertest.cpp657 int32_t numPassed = 0; in testDataDriven() local
675 ++numPassed; in testDataDriven()
678 infoln("number of passing test cases: %d", (int)numPassed); in testDataDriven()
/external/deqp/external/openglcts/modules/runner/
DglcTestRunner.cpp827 …DE_ASSERT(result.numExecuted == result.numPassed + result.numFailed + result.numNotSupported + res… in deinitSession()