HomeSort by relevance Sort by last modified time
    Searched refs:mHeight (Results 76 - 100 of 327) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
SharpenFilter.java 44 private int mHeight = 0;
118 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
134 mHeight = height;
138 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
RotateFilter.java 50 private int mHeight = 0;
100 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
102 mHeight = inputFormat.getHeight();
104 mOutputHeight = mHeight;
138 mOutputWidth = mHeight;
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 36 private final int mHeight;
42 mHeight = height;
64 byte maxYLsb = (byte)(mHeight - 1);
65 byte maxYMsb = (byte)((mHeight - 1) >> 8);
  /hardware/libhardware/modules/camera/
Stream.h 61 const uint32_t mHeight;
Stream.cpp 40 mHeight(s->height),
132 if (s->height != mHeight) {
134 __func__, mId, s->height, mHeight);
  /packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
FrameBuffer.h 32 int mHeight;
  /packages/apps/Camera2/jni/feature_mos/src/mosaic_renderer/
FrameBuffer.h 32 int mHeight;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorValueView.java 42 private float mHeight;
98 if (mDotY > mHeight - mBorder) {
99 mDotY = mHeight - mBorder;
101 mHSVO[2] = (mDotY - mBorder) / (mHeight - mBorder * 2);
113 float pos = mHSVO[2] * (mHeight - mBorder * 2);
126 mHeight = h;
139 Shader sg = new LinearGradient(mBorder, mBorder, mBorder, mHeight - mBorder, color1, color2,
148 canvas.drawRect(mBorder, mBorder, mWidth - mBorder, mHeight - mBorder, mBarPaint1);
149 canvas.drawLine(mDotX, mDotY, mDotX, mHeight - mBorder, mLinePaint2);
ColorSVRectView.java 57 private int mHeight;
149 y = Math.max(Math.min(y, mHeight - mBorder), mBorder);
152 float sat = 1 - (mDotY - mBorder) / (mHeight - 2 * mBorder);
157 float value = (mDotX - mBorder) / (mHeight - 2 * mBorder);
171 mHeight = h;
186 mDotX = (float) (mBorder + (mHeight - 2 * mBorder) * sat);
187 mDotY = (float) ((1 - val) * (mHeight - 2 * mBorder) + mBorder);
  /cts/suite/pts/deviceTests/opengl/jni/reference/scene/
Scene.cpp 22 mWidth(width), mHeight(height) {
38 mProjectionMatrix = setUpProjectionMatrix(mWidth, mHeight);
  /cts/suite/pts/deviceTests/opengl/jni/reference/scene/glowing/
BlurMeshNode.cpp 20 mWidth(width), mHeight(height) {
50 glUniform2f(scaleUniformHandle, 0, 1.0f / mHeight);
  /cts/tests/tests/opengl/src/android/opengl/cts/
NativeRendererOneColorBufferTest.java 38 private int mHeight;
83 mHeight = height;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
SwapChain11.h 39 EGLint getHeight() const { return mHeight; }
52 EGLint mHeight;
SwapChain9.cpp 27 mHeight = -1;
168 mWidth, mHeight
268 mHeight = backbufferHeight;
311 D3DVIEWPORT9 viewport = {0, 0, mWidth, mHeight, 0.0f, 1.0f};
315 float y1 = (mHeight - y - height) - 0.5f;
317 float y2 = (mHeight - y) - 0.5f;
320 float v1 = y / float(mHeight);
322 float v2 = (y + height) / float(mHeight);
337 x, mHeight - y - height,
338 x + width, mHeight -
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 43 private int mHeight;
81 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
  /developers/samples/android/ui/accessibility/BasicAccessibility/BasicAccessibility/src/main/java/com/example/android/ui/accessibility/BasicAccessibility/
DialView.java 48 private float mHeight;
183 mHeight = h;
186 mRadius = (float) (Math.min(mWidth, mHeight) / 2 * 0.8);
202 canvas.drawCircle(mWidth / 2, mHeight / 2, (float) mRadius, mDialPaint);
234 result[1] = (float) (radius * Math.sin(angle)) + (mHeight / 2);
  /frameworks/av/media/libstagefright/
JPEGSource.cpp 60 mHeight(0),
104 meta->setInt32(kKeyHeight, mHeight);
143 mHeight = 0;
186 return (mWidth > 0 && mHeight > 0) ? OK : UNKNOWN_ERROR;
214 mHeight = height;
  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 48 int mHeight;
186 mHeight = 0;
219 mHeight = h;
236 mHeight = h;
247 return mHeight;
  /frameworks/base/libs/hwui/
LayerCache.cpp 74 return int(lhs.mHeight) - int(rhs.mHeight);
109 LAYER_LOGD("Creating new layer %dx%d", entry.mWidth, entry.mHeight);
111 layer = new Layer(entry.mWidth, entry.mHeight);
134 LAYER_LOGD(" Layer size %dx%d", entry.mWidth, entry.mHeight);
  /frameworks/base/libs/hwui/font/
CacheTexture.h 53 uint16_t mHeight;
58 mX(x), mY(y), mWidth(width), mHeight(height), mNext(NULL), mPrev(NULL) {
69 currBlock->mWidth, currBlock->mHeight);
100 return mHeight;
183 uint16_t mHeight;
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImage.java 56 private int mHeight = UNKNOWN_LENGTH;
149 mHeight = options.outHeight;
152 mHeight = 0;
164 if (mHeight == UNKNOWN_LENGTH) setupDimension();
165 return mHeight;
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
OverlayDisplayWindow.java 57 protected final int mHeight;
66 mHeight = height;
137 if (mWidth > mHeight) {
138 height = mHeight * width / mWidth;
140 width = mWidth * height / mHeight;
243 if (mWidth * height < mHeight * width) {
247 mTextureView.getLayoutParams().width = mHeight * width / height;
248 mTextureView.getLayoutParams().height = mHeight;
277 mTextureView.getLayoutParams().height = mHeight;
319 scale = Math.min(scale, (float)mDefaultDisplayMetrics.heightPixels / mHeight);
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BasicTexture.java 45 protected int mHeight = UNSPECIFIED;
80 mHeight = height;
104 return mHeight;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
GroupTest.java 39 private int mHeight;
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
GroupTest.java 39 private int mHeight;
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);

Completed in 953 milliseconds

1 2 34 5 6 7 8 91011>>