Searched refs:width2 (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DSizeAreaComparator.java47 long width2 = size2.width;
49 long area2 = width2 * size2.height;
52 return (width > width2) ? 1 : -1;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSizeAreaComparator.java46 long width2 = size2.getWidth();
48 long area2 = width2 * size2.getHeight();
51 return (width > width2) ? 1 : -1;
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskPositioner.java488 int width2;
503 width2 = Math.max(width, Math.round((float)height2 * MIN_ASPECT));
504 if (width2 < mMinVisibleWidth) {
506 width2 = mMinVisibleWidth;
508 Math.min(mMaxVisibleSize.y, Math.round((float)width2 / MIN_ASPECT)));
522 width2 = Math.min(width, Math.round((float)height2 / MIN_ASPECT));
523 if (width2 < mMinVisibleWidth) {
525 width2 = mMinVisibleWidth;
527 Math.min(mMaxVisibleSize.y, Math.round((float)width2 * MIN_ASPECT)));
534 if (grows == (width1 * height1 > width2 * height
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpost_filter.cpp190 int d, offset, nMBPerRow, nMBPerCol, width2 = (width << 1); local
223 A = *(rec_y - width2);
274 *(rec_y - width2) = A - d2;
320 A = *(rec_y - width2);
371 *(rec_y - width2) = A - d2;

Completed in 560 milliseconds