Searched refs:rightBound (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Dfmo.cpp132 int leftBound, topBound, rightBound, bottomBound; local
148 rightBound = x;
169 else if (xDir == 1 && x == rightBound)
171 rightBound = AVC_MIN(rightBound + 1, (int)PicWidthInMbs - 1);
172 x = rightBound;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_group_map.c305 i32 x, y, xDir, yDir, leftBound, topBound, rightBound, bottomBound; local
326 rightBound = x;
347 else if (xDir == 1 && x == rightBound)
349 rightBound = MIN(rightBound + 1, (i32)picWidth - 1);
350 x = rightBound;
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java2301 float rightBound = width * mLastOffset;
2313 rightBound = lastItem.offset * width;
2322 } else if (scrollX > rightBound) {
2324 float over = scrollX - rightBound;
2327 scrollX = rightBound;
2365 final float rightBound = offset + ii.widthFactor + marginOffset;
2367 if (scrollOffset < rightBound || i == mItems.size() - 1) {
2581 float rightBound = width * mLastOffset;
2589 rightBound = lastItem.offset * width;
2594 } else if (scrollX > rightBound) {
[all...]

Completed in 2406 milliseconds