Home
last modified time | relevance | path

Searched refs:width2 (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/policy/
DTaskResizingAlgorithm.java111 int width2; in resizeDrag() local
126 width2 = Math.max(width, Math.round((float) height2 * MIN_ASPECT)); in resizeDrag()
127 if (width2 < minVisibleWidth) { in resizeDrag()
129 width2 = minVisibleWidth; in resizeDrag()
131 Math.min(maxVisibleSize.y, Math.round((float) width2 / MIN_ASPECT))); in resizeDrag()
145 width2 = Math.min(width, Math.round((float) height2 / MIN_ASPECT)); in resizeDrag()
146 if (width2 < minVisibleWidth) { in resizeDrag()
148 width2 = minVisibleWidth; in resizeDrag()
150 Math.min(maxVisibleSize.y, Math.round((float) width2 * MIN_ASPECT))); in resizeDrag()
157 if (grows == (width1 * height1 > width2 * height2)) { in resizeDrag()
[all …]
/frameworks/base/core/java/android/hardware/camera2/utils/
DSizeAreaComparator.java46 long width2 = size2.getWidth(); in compare() local
48 long area2 = width2 * size2.getHeight(); in compare()
51 return (width > width2) ? 1 : -1; in compare()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DSizeAreaComparator.java47 long width2 = size2.width; in compare() local
49 long area2 = width2 * size2.height; in compare()
52 return (width > width2) ? 1 : -1; in compare()
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpost_filter.cpp190 int d, offset, nMBPerRow, nMBPerCol, width2 = (width << 1); in H263_Deblock() local
223 A = *(rec_y - width2); in H263_Deblock()
274 *(rec_y - width2) = A - d2; in H263_Deblock()
320 A = *(rec_y - width2); in H263_Deblock()
371 *(rec_y - width2) = A - d2; in H263_Deblock()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
DIconInfoTest.java115 int width2 = 2; in testHashCode() local
122 IconInfo info2 = new IconInfo(width2, height2, language2, iconType2, fileName2); in testHashCode()