Home
last modified time | relevance | path

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

/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
DImageUtils.java57 Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap); in blur() local
60 theIntrinsic.forEach(tmpOut); in blur()
61 tmpOut.copyTo(outputBitmap); in blur()
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/
DCropAndSetWallpaperTask.java80 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in cropBitmap() local
81 if (crop.compress(CompressFormat.JPEG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in cropBitmap()
84 byte[] outByteArray = tmpOut.toByteArray(); in cropBitmap()
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
DDefaultWallpaperInfo.java92 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in setDefaultOnLock() local
93 if (defaultWallpaper.compress(Bitmap.CompressFormat.PNG, 100, tmpOut)) { in setDefaultOnLock()
94 byte[] outByteArray = tmpOut.toByteArray(); in setDefaultOnLock()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
DCropActivity.java557 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in doInBackground() local
558 if (crop.compress(cf, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in doInBackground()
569 mOutStream.write(tmpOut.toByteArray()); in doInBackground()
587 mWPManager.setStream(new ByteArrayInputStream(tmpOut in doInBackground()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DDefaultWallpaperPersister.java642 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in setBitmapToWallpaperManagerCompat() local
643 if (wallpaperBitmap.compress(CompressFormat.JPEG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in setBitmapToWallpaperManagerCompat()
645 byte[] outByteArray = tmpOut.toByteArray(); in setBitmapToWallpaperManagerCompat()