Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuTestPackage.hpp42 numPassed = 0; in clear()
51 int numPassed; //!< Number of cases passed. member in tcu::TestRunStatus
DtcuApp.cpp250 … %d/%d (%.1f%%)\n", result.numPassed, result.numExecuted, (result.numExecuted > 0 ? (100.0f *… in iterate()
265 result.numPassed << " " << in iterate()
DtcuTestSessionExecutor.cpp301 case QP_TEST_RESULT_PASS: m_status.numPassed += 1; break; in leaveTestCase()
/external/deqp/external/vulkancts/modules/vulkan/clipping/
DvktClippingTests.cpp456 int numPassed = 0; in testPrimitivesInside() local
485 ++numPassed; in testPrimitivesInside()
488 …return (numPassed == DE_LENGTH_OF_ARRAY(cases) ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fa… in testPrimitivesInside()
511 int numPassed = 0; in testPrimitivesOutside() local
542 ++numPassed; in testPrimitivesOutside()
545 …return (numPassed == DE_LENGTH_OF_ARRAY(cases) ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fa… in testPrimitivesOutside()
561 int numPassed = 0; in testPrimitivesDepthClamp() local
633 ++numPassed; in testPrimitivesDepthClamp()
636 …return (numPassed == numCases ? tcu::TestStatus::pass("OK") : tcu::TestStatus::fail("Rendered imag… in testPrimitivesDepthClamp()
653 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/
DvktTestPackage.cpp632 status.numPassed += m_status.numPassed; in updateGlobalStatus()
928 int numExecuted, numPassed, numFailed, numNotSupported, numWarnings, numWaived; in runTestsInSubprocess() local
929 str >> numExecuted >> numPassed >> numFailed >> numNotSupported >> numWarnings >> numWaived; in runTestsInSubprocess()
932 m_status.numPassed += numPassed; in runTestsInSubprocess()
/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/cronet/third_party/icu/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/vulkancts/modules/vulkan/compute/
DvktComputeIndirectComputeDispatchTests.cpp534 const deUint32 numPassed = *(const deUint32*)(srcPtr + RESULT_BLOCK_NUM_PASSED_OFFSET); in verifyResultBuffer() local
539 if (numPassed != expectedCount) in verifyResultBuffer()
546 << ": got numPassed = " << numPassed << ", expected " << expectedCount in verifyResultBuffer()
/external/deqp/external/openglcts/modules/runner/
DglcTestRunner.cpp860 …DE_ASSERT(result.numExecuted == result.numPassed + result.numFailed + result.numNotSupported + res… in deinitSession()