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

/frameworks/base/libs/hwui/
H A DRenderState.cpp91 void RenderState::getViewport(GLsizei* outWidth, GLsizei* outHeight) { argument
93 *outHeight = mViewportHeight;
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h321 // outHeight - filled with default height applied to the buffer
326 uint32_t* outHeight,
330 *outHeight = height;
325 deflate(uint32_t* outWidth, uint32_t* outHeight, uint32_t* outTransformHint, uint32_t* outNumPendingBuffers) const argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DTestBenchMultipleInstance.c461 u32 outWidth, outHeight; local
483 outHeight = pCropParams->cropOutHeight;
490 for (i = outHeight; i; i--)
500 outHeight >>= 1;
506 for (i = outHeight; i; i--)
519 for (i = outHeight; i; i--)
H A DDecTestBench.c593 u32 outWidth, outHeight; local
617 outHeight = pCropParams->cropOutHeight;
625 for (i = outHeight; i; i--)
635 outHeight >>= 1;
642 for (i = outHeight; i; i--)
656 for (i = outHeight; i; i--)
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java335 * <p>outHeight will be set to -1 if there is an error trying to decode.</p>
337 public int outHeight; field in class:BitmapFactory.Options
366 * null, or if inJustDecodeBounds is true, will set outWidth/outHeight
384 * size be returned (in opts.outWidth and opts.outHeight)
457 * size be returned (in opts.outWidth and opts.outHeight)
511 * size be returned (in opts.outWidth and opts.outHeight)
589 * size be returned (in opts.outWidth and opts.outHeight)
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp246 uint32_t outWidth, outHeight; local
257 outHeight = (uint32_t)(videoWidth * displayAspect);
260 outHeight = videoHeight;
265 offY = (videoHeight - outHeight) / 2;
266 Rect displayRect(offX, offY, offX + outWidth, offY + outHeight);
271 outHeight, outWidth, offY, offX);
274 outWidth, outHeight, offX, offY);
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.cpp443 /*out*/int32_t* outWidth, /*out*/int32_t* outHeight) {
482 if (outHeight != NULL) {
483 *outHeight = bestHeight;
441 roundBufferDimensionNearest(int32_t width, int32_t height, int32_t format, const CameraMetadata& info, int32_t* outWidth, int32_t* outHeight) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java430 final int outHeight = (int) Math.round(cropRect.height() * cropScale);
441 cropRect, cropRotation, outWidth, outHeight, true, false, onEndCrop);
471 RectF cropBounds, int rotation, int outWidth, int outHeight,
476 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable);
480 RectF cropBounds, int rotation, int outWidth, int outHeight,
484 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable);
488 RectF cropBounds, int rotation, int outWidth, int outHeight,
493 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable);
497 RectF cropBounds, int rotation, int outWidth, int outHeight,
503 outWidth, outHeight, setWallpape
470 BitmapCropTask(Context c, String filePath, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
479 BitmapCropTask(byte[] imageBytes, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
487 BitmapCropTask(Context c, Uri inUri, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
496 BitmapCropTask(Context c, Resources res, int inResId, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
506 init(RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument
814 getMaxCropRect( int inWidth, int inHeight, int outWidth, int outHeight, boolean leftAligned) argument
[all...]
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java401 public Drawable getBuiltInDrawable(int outWidth, int outHeight, argument
417 if (outWidth <= 0 || outHeight <= 0) {
427 if (options.outWidth != 0 && options.outHeight != 0) {
429 inHeight = options.outHeight;
441 outHeight = Math.min(inHeight, outHeight);
443 cropRectF = getMaxCropRect(inWidth, inHeight, outWidth, outHeight,
448 float top = (inHeight - outHeight) * verticalAlignment;
449 float bottom = top + outHeight;
462 roundedTrueCrop.height() / outHeight);
529 getMaxCropRect(int inWidth, int inHeight, int outWidth, int outHeight, float horizontalAlignment, float verticalAlignment) argument
[all...]

Completed in 1693 milliseconds