HomeSort by relevance Sort by last modified time
    Searched full:mwidth (Results 126 - 150 of 427) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java 79 private int mWidth = -1;
277 mWidth = width;
313 MediaFormat format = MediaFormat.createVideoFormat(mMimeType, mWidth, mHeight);
377 MediaFormat format = MediaFormat.createVideoFormat(mMimeType, mWidth, mHeight);
388 outputSurface = new OutputSurface(mWidth, mHeight);
523 byte[] frameData = new byte[mWidth * mHeight * 3 / 2];
533 String fileName = DEBUG_FILE_NAME_BASE + mWidth + "x" + mHeight + ".mp4";
544 outputSurface = new OutputSurface(mWidth, mHeight);
644 MediaFormat.createVideoFormat(mMimeType, mWidth, mHeight);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/
SoftAVC.cpp 238 uint32_t pictureSize = mWidth * mHeight * 3 / 2;
251 outHeader->nFilledLen = mWidth * mHeight * 3 / 2;
255 const uint8_t *srcU = srcY + mWidth * mHeight;
256 const uint8_t *srcV = srcU + mWidth * mHeight / 4;
257 size_t srcYStride = mWidth;
258 size_t srcUStride = mWidth / 2;
  /frameworks/base/services/core/java/com/android/server/display/
VirtualDisplayAdapter.java 144 private int mWidth;
162 mWidth = width;
206 SurfaceControl.setDisplaySize(getDisplayTokenLocked(), mWidth, mHeight);
227 if (mWidth != width || mHeight != height || mDensityDpi != densityDpi) {
230 mWidth = width;
257 mInfo.width = mWidth;
  /packages/apps/Mms/src/com/android/mms/model/
ImageModel.java 66 private int mWidth;
93 mWidth = uriImage.getWidth();
106 mWidth = uriImage.getWidth();
110 Log.v(TAG, "Image bounds: " + mWidth + "x" + mHeight);
127 return mWidth;
156 byte[] data = UriImage.getResizedImageData(mWidth, mHeight,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 67 public final int mWidth;
82 mWidth = params.mKeyboardWidth;
100 id.mWidth,
120 && other.mWidth == mWidth
181 mWidth, mHeight,
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoCarousel.java 58 private int mWidth;
212 if (width < mWidth && height < mHeight) {
280 mWidth = right - left;
282 mOrientation = (mWidth > mHeight ? LANDSCAPE : PORTRAIT);
284 mLongSide = (int) Math.max(mWidth, mHeight);
285 mShortSide = (int) Math.min(mWidth, mHeight);
  /cts/apps/CtsVerifier/include/colorchecker/
testingimage.h 46 inline int getWidth() const { return mWidth; }
63 int mWidth;
  /cts/suite/cts/deviceTests/opengl/jni/reference/
ReferenceRenderer.cpp 42 mScenes[0] = new FlockingScene(mWidth, mHeight);
43 mScenes[1] = new GlowingScene(mWidth, mHeight);
  /cts/tests/tests/opengl/src/android/opengl/cts/
NativeRendererOneColorBufferTest.java 37 private int mWidth;
82 mWidth = width;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Image.h 35 GLsizei getWidth() const { return mWidth; }
66 GLsizei mWidth;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 37 private int mWidth;
78 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
  /packages/apps/Browser/src/com/android/browser/view/
PieListView.java 46 mWidth = mChildWidth;
69 canvas.drawRect(mLeft, mTop, mLeft + mWidth, mTop + mHeight, mBgPaint);
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureLoader.java 52 mWidth = width;
63 public int getWidth() { return mWidth; }
89 private int mWidth;
126 int mWidth; // width of input surface
156 header.mWidth = headerBuffer.getInt();
253 int dataSize = (header.mWidth * header.mHeight * header.mBitCount) >> 3;
255 Texture tex = new Texture(header.mWidth, header.mHeight,
320 int mWidth;
365 header.mWidth = headerBuffer.getInt();
428 int dataSize = (header.mWidth * header.mHeight * bpp) >> 3
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 134 protected int mWidth;
369 int dayStart = mShowWeekNum ? (mWidth - mPadding * 2) / mNumCells + mPadding : mPadding;
370 if (x < dayStart || x > mWidth - mPadding) {
374 int dayPosition = (int) ((x - dayStart) * mNumDays / (mWidth - dayStart - mPadding));
419 r.right = mWidth - mPadding;
441 int x = (mWidth - mPadding * 2) / divisor + mPadding;
458 int x = (2 * i + 1) * (mWidth - mPadding * 2) / (divisor) + mPadding;
488 int x = (mWidth - mPadding * 2) / mNumCells + mPadding;
495 mWidth = w;
511 mSelectedLeft = selectedPosition * (mWidth - mPadding * 2) / mNumCell
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Renderer.h 41 EGLint mWidth;
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/
Scene.h 41 int mWidth;
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
BlurMeshNode.h 33 const float mWidth;
GlowingScene.cpp 116 mTextureIds.add(GLUtils::genTexture(mWidth, mHeight, 0)); // fbo
117 mTextureIds.add(GLUtils::genTexture(mWidth, mHeight, 0)); // tmp1
118 mTextureIds.add(GLUtils::genTexture(mWidth, mHeight, 0)); // tmp2
194 glViewport(0, 0, mWidth, mHeight);
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
VideoCaptureAndroid.java 57 format.mWidth = (buggyDevice.mMinWidth > format.mWidth)
58 ? buggyDevice.mMinWidth : format.mWidth;
166 mExpectedFrameSize = mCaptureFormat.mWidth * mCaptureFormat.mHeight *
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
SampleApplication.h 62 size_t mWidth;
  /external/chromium_org/third_party/angle/tests/angle_tests/
ANGLETest.cpp 5 mWidth(1280),
23 ReizeWindow(mWidth, mHeight);
156 mWidth = width;
206 return mWidth;
  /frameworks/av/include/media/stagefright/
JPEGSource.h 46 int32_t mWidth, mHeight;
  /frameworks/av/media/libstagefright/include/
SoftwareRenderer.h 48 int32_t mWidth, mHeight;
  /frameworks/base/core/jni/android/graphics/
Picture.h 55 int mWidth;
  /frameworks/base/libs/hwui/
PathCache.h 124 float mWidth;
133 float mWidth;
137 float mWidth;
141 float mWidth;

Completed in 1679 milliseconds

1 2 3 4 56 7 8 91011>>