HomeSort by relevance Sort by last modified time
    Searched refs:minBound (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 87 #define RANGE_CHECK(value, minBound, maxBound) \
89 if ((value) < (minBound) || (value) > (maxBound)) \
93 #define RANGE_CHECK(value, minBound, maxBound)
99 #define RANGE_CHECK_ARRAY(array, minBound, maxBound, length) \
103 if ((array)[i] < (minBound) || (array)[i] > (maxBound)) \
107 #define RANGE_CHECK_ARRAY(array, minBound, maxBound, length)
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleButtonsLayout.java 70 final int minBound = Math.min(frameWidth, frameHeight);
71 final int circleDiam = (int) (minBound - mDiamOffset);
77 if (minBound == frameWidth) {
85 if (minBound == frameWidth) {
  /external/deqp/modules/internal/
ditImageCompareTests.cpp 55 FuzzyComparisonMetricCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const float minBound, const float maxBound)
59 , m_minBound (minBound)
91 << TestLog::Float("MinBound", "Minimum bound", "", QP_KEY_TAG_NONE, m_minBound)
  /external/deqp/framework/common/
tcuTexCompareVerifier.cpp 281 const float minBound = canBeFalse ? 0.0f : 1.0f;
284 return de::inRange(result, minBound-resErr, maxBound+resErr);
414 const float minBound = canBeFalse ? 0.0f : 1.0f;
417 return de::inRange(result, minBound-resErr, maxBound+resErr);
    [all...]

Completed in 3849 milliseconds