Searched refs:srcWidth (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Gallery2/jni/filters/ |
D | geometry.c | 20 static __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination,… in flipVertical() argument 23 int width = cpy_bytes * srcWidth; in flipVertical() 34 static __inline__ void flipHorizontal(char * source, int srcWidth, int srcHeight, char * destinatio… in flipHorizontal() argument 37 int width = cpy_bytes * srcWidth; in flipHorizontal() 51 static __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destin… in flip_fun() argument 57 flipHorizontal(source, srcWidth, srcHeight, temp, dstWidth, dstHeight); in flip_fun() 63 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); in flip_fun() 67 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); in flip_fun() 73 static __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int… in rotate90() argument 75 int width = cpy_bytes * srcWidth; in rotate90() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | BitmapUtil.java | 139 final int srcWidth = src.getWidth(); in crop() local 143 if (w == srcWidth && h == srcHeight) { in crop() 149 (float) w / srcWidth, in crop() 158 srcX = (int) (srcWidth * horizontalCenterPercent - srcCroppedW / 2); in crop() 162 srcX = Math.max(Math.min(srcX, srcWidth - srcCroppedW), 0); in crop() 171 srcWidth, srcHeight, w, h, srcX, srcY, srcCroppedW, srcCroppedH, scale, in crop()
|
/packages/apps/Mms/src/com/android/mms/util/ |
D | ThumbnailManager.java | 394 int srcWidth = bitmap.getWidth(); in resizeDownBySideLength() local 397 (float) maxLength / srcWidth, (float) maxLength / srcHeight); in resizeDownBySideLength() 521 int srcWidth = bitmap.getWidth(); in resizeDownIfTooBig() local 524 (float) targetSize / srcWidth, (float) targetSize / srcHeight); in resizeDownIfTooBig()
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/ |
D | BitmapUtils.java | 141 int srcWidth = bitmap.getWidth(); in resizeDownBySideLength() local 144 (float) maxLength / srcWidth, (float) maxLength / srcHeight); in resizeDownBySideLength()
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
D | BitmapUtils.java | 141 int srcWidth = bitmap.getWidth(); in resizeDownBySideLength() local 144 (float) maxLength / srcWidth, (float) maxLength / srcHeight); in resizeDownBySideLength()
|