Searched defs:isOk (Results 1 - 25 of 92) sorted by relevance

1234

/external/deqp/modules/egl/
H A DteglClientExtensionTests.cpp189 bool isOk = true; local
214 isOk = false;
223 isOk = false;
227 if (isOk)
H A DteglRenderCase.cpp139 bool isOk = true; local
159 isOk = false;
181 isOk = false;
206 isOk = false;
211 if (!isOk && m_testCtx.getTestResult() == QP_TEST_RESULT_PASS)
H A DteglNativeColorMappingTests.cpp323 bool isOk = true; local
345 isOk = false;
357 return isOk;
365 bool isOk = true; local
385 isOk = false;
397 return isOk;
405 bool isOk = true; local
426 isOk = false;
438 return isOk;
H A DteglQueryContextTests.cpp99 bool isOk = true; local
119 isOk = false;
143 isOk = false;
173 isOk = false;
180 if (!isOk && m_testCtx.getTestResult() == QP_TEST_RESULT_PASS)
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp162 const bool isOk = compare<T>(m_minRequiredValue, value); local
167 if (!isOk)
170 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
171 isOk ? "Pass" : "Requirement not satisfied");
H A Des2fDepthTests.cpp184 bool isOk = errorCodesOk && imagesOk; local
185 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
186 isOk ? "Pass" : failReason);
H A Des2fShaderFragDataTests.cpp76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold); local
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk; local
207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green, threshold);
209 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
210 isOk ? "Pass" : "Image comparison failed");
H A Des2fTextureSizeTests.cpp157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
159 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
160 isOk ? "Pass" : "Image comparison failed");
H A Des2fTextureWrapTests.cpp217 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
219 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
220 isOk ? "Pass" : "Image comparison failed");
/external/deqp/modules/internal/
H A DditBuildInfoTests.cpp128 const bool isOk = valueName != DE_NULL; local
133 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
134 isOk ? "Pass" : "No enum name found");
157 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x01; local
159 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x02; local
167 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
168 isOk ? "Pass" : "Configured endianness inconsistent");
H A DditImageCompareTests.cpp92 const bool isOk = de::inRange(result, m_minBound, m_maxBound); local
93 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
94 isOk ? "Pass" : "Metric out of bounds");
138 const bool isOk = result == m_expectedResult; local
139 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
140 isOk ? "Pass" : "Wrong comparison result");
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dbidiconf.cpp616 UBool isOk=TRUE; local
620 isOk=FALSE;
633 isOk=FALSE;
639 if(!isOk) {
653 return isOk;
662 UBool isOk=TRUE; local
680 isOk=FALSE;
687 if(isOk && orderingCount!=visualIndex) {
690 isOk=FALSE;
692 if(!isOk) {
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBufferCopyTests.cpp88 bool isOk = true; local
109 isOk = verifier.verify(srcBuf, srcRef.getPtr(), 0, m_srcSize, m_srcTarget) && isOk;
110 isOk = verifier.verify(dstBuf, dstRef.getPtr(), 0, m_dstSize, m_dstTarget) && isOk;
121 isOk = verifier.verify(srcBuf, srcRef.getPtr(), 0, m_srcSize, m_srcTarget) && isOk;
122 isOk = verifier.verify(dstBuf, dstRef.getPtr(), 0, m_dstSize, m_dstTarget) && isOk;
124 m_testCtx.setTestResult(isOk
172 bool isOk = true; local
[all...]
H A Des3fDepthTests.cpp187 bool isOk = errorCodesOk && imagesOk; local
188 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
189 isOk ? "Pass" : failReason);
H A Des3fFboTestCase.cpp116 bool isOk = compare(reference, result); local
117 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
118 isOk ? "Pass" : "Image comparison failed");
H A Des3fShaderFragDataTests.cpp76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold); local
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk; local
207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green, threshold);
209 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
210 isOk ? "Pass" : "Image comparison failed");
251 const int indexLoc = program.isOk() ? gl.getUniformLocation(program.getProgram(), "u_index") : -1;
280 if (!program.isOk())
H A Des3fTextureSizeTests.cpp157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
159 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
160 isOk ? "Pass" : "Image comparison failed");
H A Des3fTextureSwizzleTests.cpp216 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
218 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
219 isOk ? "Pass" : "Image comparison failed");
/external/deqp/modules/gles31/functional/
H A Des31fFboTestCase.cpp120 bool isOk = compare(reference, result); local
121 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
122 isOk ? "Pass" : "Image comparison failed");
H A Des31fShaderBuiltinConstantTests.cpp207 if (!shaderExecutor->isOk())
246 const bool isOk = verifyInShaderType(glu::ShaderType(shaderType), reference); local
247 DE_ASSERT(isOk || m_testCtx.getTestResult() != QP_TEST_RESULT_PASS);
248 DE_UNREF(isOk);
/external/deqp/modules/glshared/
H A DglsSamplerObjectTest.cpp244 if (!m_program->isOk())
568 bool isOk = pixelThresholdCompare (log, "Sampler render result", "Result from rendering with sampler", samplerRef, samplerResult, tcu::RGBA(0, 0, 0, 0), tcu::COMPARE_LOG_RESULT); local
571 isOk = false;
573 if (!isOk)
763 if (!m_program->isOk())
1159 bool isOk = pixelThresholdCompare (log, "Sampler render result", "Result from rendering with sampler", samplerRef, samplerResult, tcu::RGBA(0, 0, 0, 0), tcu::COMPARE_LOG_RESULT); local
1162 isOk = false;
1164 if (!isOk)
/external/deqp/scripts/
H A Drun_nightly.py467 isOk = runNightly(config) variable
468 if not isOk:
/external/icu/icu4c/source/test/intltest/
H A Dbidiconf.cpp616 UBool isOk=TRUE; local
620 isOk=FALSE;
633 isOk=FALSE;
639 if(!isOk) {
653 return isOk;
662 UBool isOk=TRUE; local
680 isOk=FALSE;
687 if(isOk && orderingCount!=visualIndex) {
690 isOk=FALSE;
692 if(!isOk) {
[all...]
/external/deqp/framework/common/
H A DtcuImageCompare.cpp111 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
113 if (isOk)
145 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
147 pixelFoundForReference |= isOk;
158 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
160 pixelFoundForResult |= isOk;
214 bool isOk = difference <= threshold; local
218 if (!isOk || logMode == COMPARE_LOG_EVERYTHING)
227 if (!isOk)
246 return isOk;
439 bool isOk = boolAll(lessThanEqual(diff, threshold)); local
526 bool isOk = boolAll(lessThanEqual(diff, threshold)); local
610 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
695 bool isOk = boolAll(lessThanEqual(diff, threshold)); local
939 bool isOk = bilinearCompare(reference, result, errorMask, threshold); local
[all...]
/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp177 bool isOk (void) const { return m_program.getLinkStatus(); } function in class:glu::ShaderProgram

Completed in 360 milliseconds

1234