Searched defs:outWidth (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DTestBenchMultipleInstance.c464 u32 outWidth, outHeight; local
485 outWidth = pCropParams->cropOutWidth;
495 for (j = outWidth; j; j--)
499 pIn += picWidth - outWidth;
502 outWidth >>= 1;
511 for (j = outWidth; j; j--)
515 pIn += picWidth/2 - outWidth;
524 for (j = outWidth; j; j--)
528 pIn += picWidth/2 - outWidth;
H A DDecTestBench.c593 u32 outWidth, outHeight; local
616 outWidth = pCropParams->cropOutWidth;
627 for (j = outWidth; j; j--)
631 pIn += picWidth - outWidth;
634 outWidth >>= 1;
644 for (j = outWidth; j; j--)
648 pIn += picWidth/2 - outWidth;
658 for (j = outWidth; j; j--)
662 pIn += picWidth/2 - outWidth;
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java332 * <p>outWidth will be set to -1 if there is an error trying to decode.</p>
334 public int outWidth; field in class:BitmapFactory.Options
378 * or if inJustDecodeBounds is true, will set outWidth/outHeight
395 * size be returned (in opts.outWidth and opts.outHeight)
468 * size be returned (in opts.outWidth and opts.outHeight)
522 * size be returned (in opts.outWidth and opts.outHeight)
600 * size be returned (in opts.outWidth and opts.outHeight)
/frameworks/base/libs/hwui/renderstate/
H A DRenderState.cpp135 void RenderState::getViewport(GLsizei* outWidth, GLsizei* outHeight) { argument
136 *outWidth = mViewportWidth;
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h354 // outWidth - filled with default width applied to the buffer
359 inline void deflate(uint32_t* outWidth, argument
363 *outWidth = width;
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp249 uint32_t outWidth, outHeight; local
259 outWidth = videoWidth;
264 outWidth = (uint32_t)(videoHeight / displayAspect);
267 offX = (videoWidth - outWidth) / 2;
269 Rect displayRect(offX, offY, offX + outWidth, offY + outHeight);
274 outHeight, outWidth, offY, offX);
277 outWidth, outHeight, offX, offY);
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java428 final int outWidth = (int) Math.round(cropRect.width() * cropScale);
440 cropRect, cropRotation, outWidth, outHeight, true, false, onEndCrop);
470 RectF cropBounds, int rotation, int outWidth, int outHeight,
475 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable);
479 RectF cropBounds, int rotation, int outWidth, int outHeight,
483 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable);
487 RectF cropBounds, int rotation, int outWidth, int outHeight,
492 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable);
496 RectF cropBounds, int rotation, int outWidth, int outHeight,
502 outWidth, outHeigh
469 BitmapCropTask(Context c, String filePath, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
478 BitmapCropTask(byte[] imageBytes, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
486 BitmapCropTask(Context c, Uri inUri, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
495 BitmapCropTask(Context c, Resources res, int inResId, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
505 init(RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
813 getMaxCropRect( int inWidth, int inHeight, int outWidth, int outHeight, boolean leftAligned) argument
[all...]
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.cpp634 /*out*/int32_t* outWidth, /*out*/int32_t* outHeight) {
672 if (outWidth != NULL) {
673 *outWidth = bestWidth;
632 roundBufferDimensionNearest(int32_t width, int32_t height, int32_t format, android_dataspace dataSpace, const CameraMetadata& info, int32_t* outWidth, int32_t* outHeight) argument
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java451 * @param outWidth The width of the returned drawable
452 * @param outWidth The height of the returned drawable
461 public Drawable getBuiltInDrawable(int outWidth, int outHeight, argument
463 return getBuiltInDrawable(outWidth, outHeight, scaleToFit,
471 * @param outWidth The width of the returned drawable
472 * @param outWidth The height of the returned drawable
483 public Drawable getBuiltInDrawable(int outWidth, int outHeight, boolean scaleToFit, argument
506 if (outWidth <= 0 || outHeight <= 0) {
517 if (options.outWidth != 0 && options.outHeight != 0) {
518 inWidth = options.outWidth;
620 getMaxCropRect(int inWidth, int inHeight, int outWidth, int outHeight, float horizontalAlignment, float verticalAlignment) argument
[all...]

Completed in 2127 milliseconds