Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuTestSessionExecutor.hpp46 numPassed = 0; in clear()
54 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
462 ++numPassed; in testPrimitivesInside()
465 …return (numPassed == DE_LENGTH_OF_ARRAY(cases) ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fa… in testPrimitivesInside()
488 int numPassed = 0; in testPrimitivesOutside() local
517 ++numPassed; in testPrimitivesOutside()
520 …return (numPassed == DE_LENGTH_OF_ARRAY(cases) ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fa… in testPrimitivesOutside()
536 int numPassed = 0; in testPrimitivesDepthClamp() local
603 ++numPassed; in testPrimitivesDepthClamp()
606 …return (numPassed == numCases ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fail("Rendered imag… in testPrimitivesDepthClamp()
/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/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/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeIndirectComputeDispatchTests.cpp343 const deUint32 numPassed = *(const deUint32*)(srcPtr + RESULT_BLOCK_NUM_PASSED_OFFSET); in verifyResultBuffer() local
348 if (numPassed != expectedCount) in verifyResultBuffer()
355 << ": got numPassed = " << numPassed << ", expected " << expectedCount in verifyResultBuffer()
/external/deqp/external/openglcts/modules/runner/
DglcTestRunner.cpp777 …result.numExecuted == (result.numPassed + result.numNotSupported + result.numWarnings) && result.i… in deinitSession()
779 …DE_ASSERT(result.numExecuted == result.numPassed + result.numFailed + result.numNotSupported + res… in deinitSession()