Searched defs:mWidth (Results 26 - 50 of 184) sorted by relevance

12345678

/frameworks/av/media/libstagefright/foundation/include/
H A DSoftVideoEncoderOMXComponent.h77 int32_t mWidth; // width of the input frames member in struct:android::SoftVideoEncoderOMXComponent
H A DSoftwareRenderer.h53 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
H A DYUVImage.h70 int32_t width() const {return mWidth;}
120 int32_t mWidth; member in class:android::YUVImage
/frameworks/av/media/libstagefright/include/
H A DSoftVideoEncoderOMXComponent.h77 int32_t mWidth; // width of the input frames member in struct:android::SoftVideoEncoderOMXComponent
H A DSoftwareRenderer.h53 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
H A DYUVImage.h70 int32_t width() const {return mWidth;}
120 int32_t mWidth; member in class:android::YUVImage
/frameworks/base/core/java/android/hardware/camera2/params/
H A DInputConfiguration.java30 private final int mWidth; field in class:InputConfiguration
50 mWidth = width;
61 return mWidth;
100 if (otherInputConfig.getWidth() == mWidth &&
113 return HashCodeHelpers.hashCode(mWidth, mHeight, mFormat);
126 return String.format("InputConfiguration(w:%d, h:%d, format:%d)", mWidth, mHeight, mFormat);
/frameworks/base/core/java/android/util/
H A DSize.java32 mWidth = width;
41 return mWidth;
74 return mWidth == other.mWidth && mHeight == other.mHeight;
86 return mWidth + "x" + mHeight;
147 return mHeight ^ ((mWidth << (Integer.SIZE / 2)) | (mWidth >>> (Integer.SIZE / 2)));
150 private final int mWidth; field in class:Size
H A DSizeF.java43 mWidth = checkArgumentFinite(width, "width");
52 return mWidth;
84 return mWidth == other.mWidth && mHeight == other.mHeight;
96 return mWidth + "x" + mHeight;
159 return Float.floatToIntBits(mWidth) ^ Float.floatToIntBits(mHeight);
162 private final float mWidth; field in class:SizeF
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DShape.java35 private float mWidth; field in class:Shape
42 return mWidth;
77 if (mWidth != width || mHeight != height) {
78 mWidth = width;
/frameworks/base/libs/hwui/
H A DRenderBufferCache.h78 mBuffer(nullptr), mWidth(0), mHeight(0) {
82 mBuffer(nullptr), mFormat(format), mWidth(width), mHeight(height) {
87 mWidth(buffer->getWidth()), mHeight(buffer->getHeight()) {
106 uint32_t mWidth; member in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
H A DVkLayer.h33 , mWidth(layerWidth)
40 return mWidth;
48 mWidth = width;
71 int mWidth; member in class:android::uirenderer::VkLayer
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRotateFilter.java44 private int mWidth = 0; field in class:RotateFilter
95 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
96 mWidth = inputFormat.getWidth();
98 mOutputWidth = mWidth;
134 mOutputHeight = mWidth;
H A DStraightenFilter.java47 private int mWidth = 0; field in class:StraightenFilter
97 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
98 mWidth = inputFormat.getWidth();
123 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight,
124 -sinTheta * mWidth - cosTheta * mHeight);
126 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight,
127 sinTheta * mWidth - cosTheta * mHeight);
129 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight,
130 -sinTheta * mWidth + cosTheta * mHeight);
132 Point p3 = new Point(cosTheta * mWidth
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DResizingSpace.java27 private final int mWidth; field in class:ResizingSpace
36 mWidth = a.getResourceId(android.R.styleable.ViewGroup_Layout_layout_width, 0);
45 if (mWidth > 0) {
46 int width = getContext().getResources().getDimensionPixelOffset(mWidth);
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/util/
H A DDrawingTestHelper.java61 private final int mWidth; field in class:DrawingTestHelper
67 mWidth = width;
76 MeasureSpec.makeMeasureSpec(mWidth, MeasureSpec.EXACTLY),
78 view.layout(0, 0, mWidth, mHeight);
83 int[] out = new int[mWidth * mHeight];
84 mBitmap.getPixels(out, 0, mWidth, 0, 0, mWidth, mHeight);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DImageDescriptor.java24 int mWidth; field in class:ImageDescriptor
40 mWidth = 0;
59 d.mWidth = rawData[valueIndex++] & 0xff;
71 CatLog.d("ImageDescriptor", "parse; Descriptor : " + d.mWidth + ", " + d.mHeight +
/frameworks/rs/driver/
H A DrsdFrameBufferObj.h39 mWidth = width;
48 uint32_t mWidth; member in class:RsdFrameBufferObj
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DGroupTest.java31 private int mWidth; field in class:GroupTest
41 mWidth = mInPixelsAllocation.getType().getX();
60 tb.setX(mWidth);
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DGroupTest.java38 private int mWidth; field in class:GroupTest
48 mWidth = mInPixelsAllocation.getType().getX();
67 tb.setX(mWidth);
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DPortableFloatMap.java16 private int mWidth; field in class:PortableFloatMap
49 mWidth = Integer.parseInt(widthLine);
55 final int bytesPerRow = mBytesPerPixel * mWidth;
65 byte[] row = new byte[mBytesPerPixel * mWidth];
88 float[] array = new float[mWidth * mHeight];
94 int getWidth() { return mWidth; }
/frameworks/av/camera/include/camera/camera2/
H A DOutputConfiguration.h73 mWidth == other.mWidth &&
90 if (mWidth != other.mWidth) {
91 return mWidth < other.mWidth;
118 int mWidth; member in class:android::hardware::camera2::params::OutputConfiguration
/frameworks/av/include/camera/camera2/
H A DOutputConfiguration.h73 mWidth == other.mWidth &&
90 if (mWidth != other.mWidth) {
91 return mWidth < other.mWidth;
118 int mWidth; member in class:android::hardware::camera2::params::OutputConfiguration
/frameworks/av/media/libstagefright/codec2/include/
H A DC2Config.h230 int32_t mWidth; ///< video width member in struct:android::C2VideoSizeStruct
234 C2FIELD(mWidth, "width")
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h33 : mWidth(width),
41 meta->setInt32(kKeyWidth, mWidth);
88 int mWidth, mHeight; member in class:android::VideoSource

Completed in 363 milliseconds

12345678