Searched refs:mHeight (Results 26 - 50 of 165) sorted by relevance

1234567

/frameworks/base/libs/hwui/
H A DPixelBuffer.h144 return mHeight;
151 return mWidth * mHeight * formatSize(mFormat);
203 mFormat(format), mWidth(width), mHeight(height), mAccessMode(kAccessMode_None) {
209 uint32_t mHeight; member in class:android::uirenderer::PixelBuffer
H A DDeferredLayerUpdater.h43 if (mWidth != width || mHeight != height) {
45 mHeight = height;
88 uint32_t mHeight; member in class:android::uirenderer::DeferredLayerUpdater
H A DSnapshot.h162 int getViewportHeight() const { return mViewportData.mHeight; }
281 ViewportData() : mWidth(0), mHeight(0) {}
284 mHeight = height;
294 int mHeight; member in struct:android::uirenderer::Snapshot::ViewportData
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DReusableBitmap.java29 private int mHeight; field in class:ReusableBitmap
54 mHeight = h;
62 return mHeight;
108 sb.append(mHeight);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DResize.java37 private int mHeight; field in class:Resize
46 mHeight = mInPixelsAllocation.getType().getY();
50 (int)(mWidth * scale), (int)(mHeight * scale));
57 mScript.set_gHeightIn(mHeight);
H A DConvolve3x3.java36 private int mHeight; field in class:Convolve3x3
45 mHeight = mInPixelsAllocation.getType().getY();
61 mScript.set_gHeight(mHeight);
H A DConvolve5x5.java36 private int mHeight; field in class:Convolve5x5
45 mHeight = mInPixelsAllocation.getType().getY();
75 mScript.set_gHeight(mHeight);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DResize.java37 private int mHeight; field in class:Resize
46 mHeight = mInPixelsAllocation.getType().getY();
50 (int)(mWidth * scale), (int)(mHeight * scale));
57 mScript.set_gHeightIn(mHeight);
H A DConvolve3x3.java36 private int mHeight; field in class:Convolve3x3
60 mHeight = mInPixelsAllocation.getType().getY();
72 mScript.set_gHeight(mHeight);
/frameworks/base/telecomm/java/android/telecom/
H A DCameraCapabilities.java46 private final int mHeight; field in class:CameraCapabilities
60 mHeight = height;
142 return mHeight;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DImageDescriptor.java25 int mHeight; field in class:ImageDescriptor
41 mHeight = 0;
60 d.mHeight = rawData[valueIndex++] & 0xff;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DConvolve3x3.java29 private int mHeight; field in class:Convolve3x3
38 mHeight = mInPixelsAllocation.getType().getY();
54 mScript.set_gHeight(mHeight);
H A DConvolve5x5.java29 private int mHeight; field in class:Convolve5x5
38 mHeight = mInPixelsAllocation.getType().getY();
68 mScript.set_gHeight(mHeight);
H A DGroupTest.java32 private int mHeight; field in class:GroupTest
42 mHeight = mInPixelsAllocation.getType().getY();
61 tb.setY(mHeight);
/frameworks/base/graphics/java/android/graphics/
H A DYuvImage.java63 private int mHeight; field in class:YuvImage
105 mHeight = height;
124 Rect wholeImage = new Rect(0, 0, mWidth, mHeight);
179 return mHeight;
186 mHeight * mStrides[0] + top / 2 * mStrides[1]
/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
H A DRsYuv.java40 private int mHeight; field in class:RsYuv
74 mHeight = height;
76 mScript.invoke_setSize(mWidth, mHeight);
80 tb.setY(mHeight);
88 tb.setY(mHeight);
106 return mHeight;
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h34 mHeight(height),
42 meta->setInt32(kKeyHeight, mHeight);
88 int mWidth, mHeight; member in class:android::VideoSource
/frameworks/base/media/java/android/media/
H A DFaceDetector.java119 mHeight = height;
144 if (bitmap.getWidth() != mWidth || bitmap.getHeight() != mHeight) {
198 private int mHeight; field in class:FaceDetector
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterSurfaceView.java39 private int mHeight; field in class:FilterSurfaceView
82 mListener.surfaceChanged(getHolder(), mFormat, mWidth, mHeight);
122 mHeight = height;
/frameworks/ex/framesequence/src/android/support/rastermill/
H A DFrameSequence.java30 private final int mHeight; field in class:FrameSequence
36 public int getHeight() { return mHeight; }
54 mHeight = height;
/frameworks/base/core/jni/android/graphics/
H A DPicture.h56 int mHeight; member in class:android::Picture
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DSharpenFilter.java39 private int mHeight = 0; field in class:SharpenFilter
113 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
129 mHeight = height;
133 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DUsbHid.java36 private final int mHeight; field in class:UsbHid.Multitouch
42 mHeight = height;
64 byte maxYLsb = (byte)(mHeight - 1);
65 byte maxYMsb = (byte)((mHeight - 1) >> 8);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureSource.java40 private int mHeight; field in class:GLTextureSource
78 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp60 mHeight(0),
104 meta->setInt32(kKeyHeight, mHeight);
143 mHeight = 0;
186 return (mWidth > 0 && mHeight > 0) ? OK : UNKNOWN_ERROR;
214 mHeight = height;

Completed in 4106 milliseconds

1234567