Searched refs:mHeight (Results 76 - 100 of 240) sorted by relevance

12345678910

/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DGroupTest.java39 private int mHeight; field in class:GroupTest
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DConvolve5x5.java29 private int mHeight; field in class:Convolve5x5
60 mHeight = mInPixelsAllocation.getType().getY();
84 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/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DConvolve5x5.java36 private int mHeight; field in class:Convolve5x5
67 mHeight = mInPixelsAllocation.getType().getY();
91 mScript.set_gHeight(mHeight);
H A DGroupTest.java39 private int mHeight; field in class:GroupTest
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DOverlayDisplayWindow.java60 protected final int mHeight; field in class:OverlayDisplayWindow
69 mHeight = height;
150 if (mWidth > mHeight) {
151 height = mHeight * width / mWidth;
153 width = mWidth * height / mHeight;
262 if (mWidth * height < mHeight * width) {
266 mTextureView.getLayoutParams().width = mHeight * width / height;
267 mTextureView.getLayoutParams().height = mHeight;
301 mTextureView.getLayoutParams().height = mHeight;
349 scale = Math.min(scale, (float)mDefaultDisplayMetrics.heightPixels / mHeight);
[all...]
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DOverlayDisplayWindow.java60 protected final int mHeight; field in class:OverlayDisplayWindow
69 mHeight = height;
150 if (mWidth > mHeight) {
151 height = mHeight * width / mWidth;
153 width = mWidth * height / mHeight;
262 if (mWidth * height < mHeight * width) {
266 mTextureView.getLayoutParams().width = mHeight * width / height;
267 mTextureView.getLayoutParams().height = mHeight;
301 mTextureView.getLayoutParams().height = mHeight;
349 scale = Math.min(scale, (float)mDefaultDisplayMetrics.heightPixels / mHeight);
[all...]
/frameworks/av/include/media/stagefright/
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
/frameworks/base/graphics/java/android/graphics/
H A DGraphicBuffer.java52 private final int mHeight; field in class:GraphicBuffer
89 mHeight = height;
119 return mHeight;
271 dest.writeInt(mHeight);
/frameworks/base/libs/hwui/
H A DPathCache.h125 float mHeight; member in struct:android::uirenderer::PathDescription::Shape::RoundRect
134 float mHeight; member in struct:android::uirenderer::PathDescription::Shape::Oval
138 float mHeight; member in struct:android::uirenderer::PathDescription::Shape::Rect
142 float mHeight; member in struct:android::uirenderer::PathDescription::Shape::Arc
H A DSnapshot.h163 int getViewportHeight() const { return mViewportData.mHeight; }
247 ViewportData() : mWidth(0), mHeight(0) {}
250 mHeight = height;
260 int mHeight; member in struct:android::uirenderer::Snapshot::ViewportData
H A DCanvasState.cpp25 : mWidth(-1), mHeight(-1), mSaveCount(1), mCanvas(renderer), mSnapshot(&mFirstSnapshot) {}
41 if (mWidth != viewportWidth || mHeight != viewportHeight) {
43 mHeight = viewportHeight;
57 if (mWidth != viewportWidth || mHeight != viewportHeight) {
59 mHeight = viewportHeight;
H A DDeferredLayerUpdater.cpp78 mLayer = mCreateLayerFn(mRenderState, mWidth, mHeight, mColorFilter, mAlpha, mMode, mBlend);
138 mHeight != static_cast<int>(buffer->getHeight());
168 mLayer->setSize(mWidth, mHeight);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java45 private int mHeight = 0; field in class:GrainFilter
135 mHeight = height;
139 mGrainProgram.setHostValue("stepY", 0.5f / mHeight);
175 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
H A DRedEyeFilter.java56 private int mHeight = 0; field in class:RedEyeFilter
125 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
127 mHeight = inputFormat.getHeight();
155 int bitmapHeight = mHeight / 2;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DTexture.h29 size_t mHeight; member in class:android::Texture
/frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
H A DEglWindowSurface.java49 private int mHeight; field in class:EglWindowSurface
109 mHeight = getHeight();
113 if (width != mWidth || height != mHeight) {
118 mHeight = getHeight();
/frameworks/base/libs/hwui/pipeline/skia/
H A DVectorDrawableAtlas.h151 const int mHeight; member in class:android::uirenderer::skiapipeline::VectorDrawableAtlas
202 return 2 * width < mWidth && 2 * height < mHeight;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp123 mEncParams->encHeight[0] = mHeight;
147 if (((uint64_t)mWidth * mHeight) > ((uint64_t)INT32_MAX / 3)) {
152 (uint8_t *) malloc((mWidth * mHeight * 3 ) >> 1);
157 if (mWidth % 16 != 0 || mHeight % 16 != 0) {
159 mWidth, mHeight);
449 mInputFrameData, (mWidth * mHeight * 3) >> 1,
451 mWidth, mHeight);
462 inputData, mInputFrameData, mWidth, mHeight);
472 vin.height = align(mHeight, 16);
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DRgbPlayerActivity.java74 private int mHeight = 0; field in class:RgbPlayerActivity.RgbView
122 mHeight = Integer.parseInt(prop.getProperty("height"));
130 mBytesPerImage = mHeight * mBytesPerLine;
132 mBitmap = Bitmap.createBitmap(mWidth, mHeight,
194 for (int i = mHeight - 1; i >= 0; i--) {
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp59 mHeight(height),
166 inDef->format.video.nFrameHeight = mHeight;
182 mCropHeight = mHeight;
192 return max(mIsAdaptive ? mAdaptiveMaxHeight : 0, mHeight);
200 bool sizeChanged = (width != mWidth || height != mHeight);
219 mHeight = height;
249 def->format.video.nSliceHeight = mHeight;
326 for (size_t i = 0; i < mHeight; ++i) {
333 for (size_t i = 0; i < mHeight / 2; ++i) {
340 for (size_t i = 0; i < mHeight /
[all...]
/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java49 private int mHeight; field in class:DisplayListCanvas
62 canvas.mHeight = height;
121 return mHeight;
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp40 , mHeight(height) {
54 const int mHeight; member in struct:android::PageRecord
95 SkCanvas* canvas = document->beginPage(page->mWidth, page->mHeight,
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java80 private int mHeight; field in class:SurfaceTextureSource
148 mOutputFormat = ImageFormat.create(mWidth, mHeight,
243 mOutputFormat.setDimensions(mWidth, mHeight);

Completed in 357 milliseconds

12345678910