OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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/
CircleButtonsLayout.java
88
int
minBound
= Math.min(frameWidth, frameHeight);
89
int circleDiam = (int) (
minBound
- mDiamOffset);
93
if (
minBound
== frameWidth) {
101
if (
minBound
== frameWidth) {
169
int bottomMarginOffset = (frameHeight -
minBound
) / 2;
Completed in 33 milliseconds