Home
last modified time | relevance | path

Searched refs:outSize (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/robolectric_tests/src/com/android/launcher3/model/
DGridBackupTableTest.java91 Point outSize = new Point(); in backupTableRestored() local
92 assertEquals(4, backupTable.getRestoreHotseatAndGridSize(outSize)); in backupTableRestored()
93 assertEquals(4, outSize.x); in backupTableRestored()
94 assertEquals(4, outSize.y); in backupTableRestored()
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
DWallpaperCropActivity.java338 Point outSize = WallpaperUtils.getDefaultWallpaperSize(getResources(), in cropImageAndSetWallpaper() local
341 inSize.x, inSize.y, outSize.x, outSize.y, false); in cropImageAndSetWallpaper()
348 outSize.x, outSize.y, onEndCrop); in cropImageAndSetWallpaper()
/packages/modules/NeuralNetworks/common/operations/
DResizeImageOps.cpp62 inline float calculateResizeScale(int32_t inSize, int32_t outSize, bool alignCorners) { in calculateResizeScale() argument
63 return (alignCorners && outSize > 1) ? (inSize - 1) / static_cast<float>(outSize - 1) in calculateResizeScale()
64 : inSize / static_cast<float>(outSize); in calculateResizeScale()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DImageFilterTinyPlanet.java71 Bitmap bitmapIn, int width, int height, Bitmap bitmapOut, int outSize, float scale, in nativeApplyFilter() argument