Searched defs:mHeight (Results 26 - 50 of 129) sorted by relevance

123456

/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/driver/
H A DrsdFrameBufferObj.h40 mHeight = height;
49 uint32_t mHeight; member in class:RsdFrameBufferObj
/frameworks/rs/java/tests/ImageProcessing_jb/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);
H A DConvolve3x3.java36 private int mHeight; field in class:Convolve3x3
60 mHeight = mInPixelsAllocation.getType().getY();
72 mScript.set_gHeight(mHeight);
H A DConvolve5x5.java36 private int mHeight; field in class:Convolve5x5
67 mHeight = mInPixelsAllocation.getType().getY();
91 mScript.set_gHeight(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/core/java/android/hardware/camera2/params/
H A DHighSpeedVideoConfiguration.java57 mHeight = checkArgumentPositive(height, "height must be positive");
59 mSize = new Size(mWidth, mHeight);
78 return mHeight;
136 mHeight == other.mHeight &&
148 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
152 private final int mHeight; field in class:HighSpeedVideoConfiguration
H A DStreamConfiguration.java64 mHeight = checkArgumentPositive(height, "height must be positive");
96 return mHeight;
105 return new Size(mWidth, mHeight);
153 mHeight == other.mHeight &&
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);
169 private final int mHeight; field in class:StreamConfiguration
H A DStreamConfigurationDuration.java59 mHeight = checkArgumentPositive(height, "height must be positive");
91 return mHeight;
100 return new Size(mWidth, mHeight);
132 mHeight == other.mHeight &&
143 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight,
149 private final int mHeight; field in class:StreamConfigurationDuration
/frameworks/base/libs/hwui/
H A DLayerCache.h100 mLayer(NULL), mWidth(0), mHeight(0) {
105 mHeight = Layer::computeIdealHeight(layerHeight);
109 mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
132 uint32_t mHeight; member in struct:android::uirenderer::LayerCache::LayerEntry
H A DRenderBuffer.h36 mFormat(format), mWidth(width), mHeight(height), mAllocated(false) {
82 glRenderbufferStorage(GL_RENDERBUFFER, mFormat, mWidth, mHeight);
93 if (isAllocated() && (width != mWidth || height != mHeight)) {
98 mHeight = height;
112 return mHeight;
120 return (uint32_t) ((mWidth * mHeight * formatSize(mFormat)) / 8.0f + 0.5f);
184 uint32_t mHeight; member in struct:android::uirenderer::RenderBuffer
H A DRenderBufferCache.h81 mBuffer(NULL), mWidth(0), mHeight(0) {
85 mBuffer(NULL), mFormat(format), mWidth(width), mHeight(height) {
90 mWidth(buffer->getWidth()), mHeight(buffer->getHeight()) {
116 uint32_t mHeight; member in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
H A DStatefulBaseRenderer.h47 return prepareDirty(0.0f, 0.0f, mWidth, mHeight, opaque);
110 int getHeight() { return mHeight; }
153 int mWidth, mHeight; member in class:android::uirenderer::StatefulBaseRenderer
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCropRectFilter.java51 private int mHeight = 0; field in class:CropRectFilter
83 updateSourceRect(mWidth, mHeight);
105 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
121 mHeight = height;
124 Log.e("CropFilter", mWidth + ", " + mHeight + ", " +
126 (float) mYorigin / mHeight + ", " +
128 (float) mOutputHeight / mHeight);
132 (float) mYorigin / mHeight,
134 (float) mOutputHeight / mHeight);
H A DDocumentaryFilter.java40 private int mHeight = 0; field in class:DocumentaryFilter
123 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
125 mHeight = inputFormat.getHeight();
145 if (mWidth > mHeight) {
147 scale[1] = ((float) mHeight) / mWidth;
149 scale[0] = ((float) mWidth) / mHeight;
H A DFisheyeFilter.java49 private int mHeight = 0; field in class:FisheyeFilter
115 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
138 mHeight = height;
146 if (mWidth > mHeight) {
148 scale[1] = ((float) mHeight) / mWidth;
150 scale[0] = ((float) mWidth) / mHeight;
H A DLomoishFilter.java40 private int mHeight = 0; field in class:LomoishFilter
154 if (mWidth > mHeight) {
156 scale[1] = ((float) mHeight) / mWidth;
158 scale[0] = ((float) mWidth) / mHeight;
168 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
187 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
189 mHeight = inputFormat.getHeight();
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);
H A DVignetteFilter.java39 private int mHeight = 0; field in class:VignetteFilter
95 if (mWidth > mHeight) {
97 scale[1] = ((float) mHeight) / mWidth;
99 scale[0] = ((float) mWidth) / mHeight;
137 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
139 mHeight = inputFormat.getHeight();
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java119 mHeight = height;
133 public int getHeight() { return mHeight; }
142 private int mHeight; field in class:ETC1Util.ETC1Texture
/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/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHardwareCanvasSurfaceViewActivity.java71 private int mWidth, mHeight; field in class:HardwareCanvasSurfaceViewActivity.RenderingThread
79 mHeight = height;
104 if (y + 20.0f + speedY >= mHeight || y + speedY <= 0.0f) {
/frameworks/av/include/media/stagefright/
H A DSurfaceMediaSource.h164 int mHeight; member in class:android::SurfaceMediaSource
/frameworks/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h93 uint32_t mWidth, mHeight; member in struct:android::SoftVideoDecoderOMXComponent

Completed in 719 milliseconds

123456