HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 126 - 150 of 354) sorted by null

1 2 3 4 56 7 8 91011>>

  /development/perftests/panorama/feature_stab/db_vlvm/
db_feature_detection.cpp 1631 float max_val,threshold; local
1730 float max_val,threshold; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_message_filter.cc 682 // Don't refresh if the specified threshold has not been passed. Note that
689 const base::TimeDelta threshold = base::TimeDelta::FromSeconds( local
692 if (now - last_plugin_refresh_time_ >= threshold) {
693 // Only refresh if the threshold hasn't been exceeded yet.
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afcjk.c 1558 FT_Pos threshold = 64; local
    [all...]
aflatin.c 347 /* same Y coordinate, then threshold the `closeness'... */
622 FT_Pos threshold; local
631 threshold = 40;
638 threshold = 52;
640 fitted = ( scaled + threshold ) & ~63;
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c 1683 FT_Int threshold; local
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.h 229 FT_F26Dot6 threshold; member in struct:TT_ExecContextRec_
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
pickinter.c 465 unsigned int threshold = (xd->block[0].dequant[1] local
468 if(threshold < x->encode_breakout)
469 threshold = x->encode_breakout;
471 if (sse < threshold )
749 * If so then prevent it from being tested and increase the threshold
757 /* Increase the threshold for coding this mode to make it less
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.c 527 double threshold = 0.05; local
544 found = (estimate_error(arc, etaA, eta_b) <= threshold);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lgc.c 904 ** cycle will start when memory use hits threshold
907 l_mem debt, threshold; local
909 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */
912 debt = -cast(l_mem, threshold - gettotalbytes(g));
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
tcmalloc.cc 185 // infinite loop. So by default we set the threshold to a huge number
198 "trace to be dumped to stderr. The threshold for "
200 "every time we print a message so that the threshold "
1038 const int64 threshold = large_alloc_threshold; local
    [all...]
  /external/deqp/modules/egl/
teglRenderTests.cpp 699 const float threshold = 0.02f; local
789 bool imagesOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, frame, threshold, tcu::COMPARE_LOG_RESULT);
884 const float threshold = 0.02f; local
1000 bool imagesOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, frame, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDepthStencilTests.cpp 620 tcu::RGBA threshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local
702 bool compareOk = tcu::pixelThresholdCompare(m_testCtx.getLog(), "CompareResult", "Image Comparison Result", *m_refColorBuffer, renderedImg, threshold,
    [all...]
es2fTextureSpecificationTests.cpp 506 tcu::UVec4 threshold = computeCompareThreshold(m_context.getRenderTarget().getPixelFormat(), m_texFormat); local
507 bool isOk = tcu::intThresholdCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference.getAccess(), result.getAccess(), threshold,
547 const float threshold = 0.02f; local
548 isOk = tcu::fuzzyCompare(m_testCtx.getLog(), "Result", (string("Image comparison result: ") + de::toString((tcu::CubeFace)face)).c_str(), reference, result, threshold,
    [all...]
es2fTextureUnitTests.cpp 430 const float threshold = 0.1f; local
439 if (de::abs(lodMax) < threshold || (lodMax > 0.0f && de::abs(deFloatFrac(lodMax) - 0.5f) < threshold) ||
440 de::abs(lodMin) < threshold || (lodMin > 0.0f && de::abs(deFloatFrac(lodMin) - 0.5f) < threshold) ||
812 const float threshold = 0.001f; local
813 bool isOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, gles2Frame, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDepthStencilTests.cpp 620 tcu::RGBA threshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local
702 bool compareOk = tcu::pixelThresholdCompare(m_testCtx.getLog(), "CompareResult", "Image Comparison Result", *m_refColorBuffer, renderedImg, threshold,
    [all...]
es3fFragmentOutputTests.cpp 705 gl.disable(GL_DITHER); // Dithering causes issues with unorm formats. Those issues could be worked around in threshold, but it makes validation less accurate.
824 UVec4 formatThreshold; //!< Threshold computed based on format.
825 deUint32 precThreshold = 0; //!< Threshold computed based on output type precision
856 // bits in the process and it must be taken into account when computing threshold.
859 const Vec4 threshold = select(baseThreshold, Vec4(2.0f), cmpMask); local
861 isOk = tcu::floatThresholdCompare(log, name.c_str(), desc.c_str(), reference, rendered, threshold, tcu::COMPARE_LOG_RESULT);
868 const tcu::UVec4 threshold = select(UVec4(0u), UVec4(~0u), cmpMask); local
869 isOk = tcu::intThresholdCompare(log, name.c_str(), desc.c_str(), reference, rendered, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
es3fShaderDerivateTests.cpp 268 const tcu::Vec4& threshold,
276 log << TestLog::Message << "Expecting " << LogVecComps(reference, numComps) << " with threshold " << LogVecComps(threshold, numComps) << TestLog::EndMessage;
283 const bool isOk = tcu::allEqual(tcu::logicalOr(tcu::lessThanEqual(tcu::abs(reference - resDerivate), threshold), mask), tcu::BVec4(true));
669 const tcu::Vec4 threshold = getSurfaceThreshold() / abs(m_derivScale); local
672 reference, threshold, m_derivScale, m_derivBias);
806 const tcu::Vec4 threshold = max(surfaceThreshold, opThreshold); local
809 reference, threshold, m_derivScale, m_derivBias);
822 const tcu::Vec4 threshold = max(surfaceThreshold, max(dxThreshold, dyThreshold)); local
825 reference, threshold, m_derivScale, m_derivBias)
1056 const tcu::Vec4 threshold = max(surfaceThreshold, opThreshold); local
1069 const tcu::Vec4 threshold = max(surfaceThreshold, max(dxThreshold, dyThreshold)); local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fOpaqueTypeIndexingTests.cpp 576 const float threshold = 1.0f / 256.0f; local
581 isOk = boolAll(lessThanEqual(abs(reference-result), tcu::Vec4(threshold)));
    [all...]
es31fTextureSpecificationTests.cpp 294 const float threshold = 0.02f; local
299 bool isFaceOk = tcu::fuzzyCompare(m_testCtx.getLog(), name.c_str(), desc.c_str(), reference, result, threshold,
    [all...]
  /external/e2fsprogs/e2fsck/
pass1.c 514 unsigned int threshold; local
525 "numdirs_threshold", 0, 0, &threshold);
534 (threshold && num_dirs <= threshold))
    [all...]
  /external/freetype/src/autofit/
afcjk.c 1593 FT_Pos threshold = 64; local
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 1682 FT_Int threshold; local
    [all...]
  /external/freetype/src/truetype/
ttinterp.h 229 FT_F26Dot6 threshold; member in struct:TT_ExecContextRec_
  /external/libvpx/libvpx/vp8/encoder/
pickinter.c 464 unsigned int threshold = (xd->block[0].dequant[1] local
467 if(threshold < x->encode_breakout)
468 threshold = x->encode_breakout;
470 if (sse < threshold )
748 * If so then prevent it from being tested and increase the threshold
756 /* Increase the threshold for coding this mode to make it less
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.c 527 double threshold = 0.05; local
544 found = (estimate_error(arc, etaA, eta_b) <= threshold);

Completed in 763 milliseconds

1 2 3 4 56 7 8 91011>>