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

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 86 #define RANGE_CHECK(value, minBound, maxBound) \
88 if ((value) < (minBound) || (value) > (maxBound)) \
92 #define RANGE_CHECK(value, minBound, maxBound)
98 #define RANGE_CHECK_ARRAY(array, minBound, maxBound, length) \
102 if ((array)[i] < (minBound) || (array)[i] > (maxBound)) \
106 #define RANGE_CHECK_ARRAY(array, minBound, maxBound, length)
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleButtonsLinearLayout.java 87 int minBound = Math.min(frameWidth, frameHeight);
88 int circleDiam = (int) (minBound - mDiamOffset);
92 if (minBound == frameWidth) {
100 if (minBound == frameWidth) {
168 int bottomMarginOffset = (frameHeight - minBound) / 2;

Completed in 154 milliseconds