Searched defs:height (Results 51 - 75 of 763) sorted by relevance

1234567891011>>

/frameworks/av/media/libmedia/
H A DIRemoteDisplayClient.cpp41 uint32_t width, uint32_t height, uint32_t flags, uint32_t session)
47 data.writeInt32(height);
82 uint32_t height = data.readInt32(); local
85 onDisplayConnected(surfaceTexture, width, height, flags, session);
40 onDisplayConnected(const sp<IGraphicBufferProducer>& bufferProducer, uint32_t width, uint32_t height, uint32_t flags, uint32_t session) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dget_pred_outside.cpp36 height = height of the VOP in pixels (y axis); full-pel resolution;
247 int height, /* i */
268 if (ypos > ((height - 1) << 1)) ypos = (height - 1) << 1;
301 else if ((ypos >> 1) < (height - B_SIZE)) /* pad left of frame */
332 prev = c_prev + width * (height - 8);
350 ptr = pred + 8 + (((ypos >> 1) - (height - 8)) << 4) + (xpos >> 1);
399 prev = c_prev + width * (height - 8) + (xpos >> 1) - xoffset;
419 ptr = pred + (((ypos >> 1) - (height
241 GetPredOutside( int xpos, int ypos, uint8 *c_prev, uint8 *pred_block, int width, int height, int rnd1, int pred_width ) argument
[all...]
H A Dpp_semaphore_chroma_inter.cpp32 height = luminance VOP height in pixels (int)
119 int height, /* i */
160 else if (nmvy > (height >> 4) - 1)
162 nmvy = (height >> 4) - 1;
176 if (((dy&0xF) != 0) && (mmvy + 1 < (height >> 4) - 1))
111 pp_semaphore_chroma_inter( int xpred, int ypred, uint8 *pp_dec_u, uint8 *pstprcTypPrv, int dx, int dy, int mvwidth, int height, int32 size, int mv_loc, uint8 msk_deblock ) argument
/frameworks/av/media/libstagefright/foundation/include/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
71 int32_t height() const {return mHeight;} function in class:android::YUVImage
73 // Returns true if pixel is the range [0, width-1] x [0, height-1]
78 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
84 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
147 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
167 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
/frameworks/av/media/libstagefright/include/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
71 int32_t height() const {return mHeight;} function in class:android::YUVImage
73 // Returns true if pixel is the range [0, width-1] x [0, height-1]
78 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
84 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
147 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
167 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
/frameworks/av/media/libstagefright/rtsp/
H A Drtp_test.cpp191 int32_t width, height; local
193 CHECK(decoder->getFormat()->findInt32(kKeyHeight, &height));
194 printf("INFO_FORMAT_CHANGED %d x %d\n", width, height);
/frameworks/base/core/java/android/hardware/camera2/params/
H A DInputConfiguration.java35 * Create an input configration with the width, height, and user-defined format.
42 * @param height Height of the input buffers.
49 public InputConfiguration(int width, int height, int format) { argument
51 mHeight = height;
65 * Get the height of this input configration.
67 * @return height of this input configuration.
120 * the width, height, and format, respectively.</p>
/frameworks/base/core/java/android/util/
H A DSize.java22 * Immutable class for describing width and height dimensions in pixels.
29 * @param height The height of the size, in pixels
31 public Size(int width, int height) { argument
33 mHeight = height;
45 * Get the height of the size (in pixels).
46 * @return height
98 * the width and height.</p>
104 * "<i>width</i>{@code x}<i>height</i>" or
105 * "<i>width</i>{@code *}<i>height</
[all...]
H A DSizeF.java23 * Immutable class for describing width and height dimensions in some arbitrary
26 * Width and height are finite values stored as a floating point representation.
33 * <p>Both the {@code width} and the {@code height} must be a finite number.
37 * @param height The height of the size
40 * if either {@code width} or {@code height} was not finite.
42 public SizeF(final float width, final float height) { argument
44 mHeight = checkArgumentFinite(height, "height");
56 * Get the height o
[all...]
/frameworks/base/core/jni/android/graphics/
H A DMovieImpl.cpp40 int Movie::height() function in class:Movie
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java47 * @param stdHeight the standard height for the shape. Any changes to the
48 * height with resize() will result in a height scaled based
49 * on the new height divided by this height.
66 protected void onResize(float width, float height) { argument
68 mScaleY = height / mStdHeight;
H A DShape.java46 * Returns the height of the Shape.
68 * @param height the height of the shape (in pixels)
70 public final void resize(float width, float height) { argument
74 if (height < 0) {
75 height =0;
77 if (mWidth != width || mHeight != height) {
79 mHeight = height;
80 onResize(width, height);
100 * @param height th
102 onResize(float width, float height) argument
[all...]
/frameworks/base/libs/hwui/
H A DNinePatchUtils.h23 int width, int height) {
29 // We'll often see ninepatches where the last div is equal to the width or height.
34 if (lattice->fYCount > 0 && height == lattice->fYDivs[lattice->fYCount - 1]) {
22 SetLatticeDivs(SkCanvas::Lattice* lattice, const Res_png_9patch& chunk, int width, int height) argument
H A DRenderBufferCache.h47 * @param height The desired height of the buffer
49 RenderBuffer* get(GLenum format, const uint32_t width, const uint32_t height);
81 RenderBufferEntry(GLenum format, const uint32_t width, const uint32_t height): argument
82 mBuffer(nullptr), mFormat(format), mWidth(width), mHeight(height) {
/frameworks/base/libs/hwui/pipeline/skia/
H A DGLFunctorDrawable.cpp42 GLint height = (viewportHeight - clip.fTop) - y; local
43 glScissor(clip.fLeft, y, clip.width(), height);
72 info.height = canvasInfo.height();
89 setScissor(info.height, it.rect());
104 setScissor(info.height, clipRegion.getBounds());
/frameworks/base/libs/hwui/tests/common/
H A DBitmapAllocationTestUtils.h30 static sk_sp<Bitmap> allocateHeapBitmap(int width, int height, argument
32 sk_sp<Bitmap> bitmap = TestUtils::createBitmap(width, height, colorType);
39 static sk_sp<Bitmap> allocateHardwareBitmap(int width, int height, argument
42 SkImageInfo info = SkImageInfo::Make(width, height, colorType, kPremul_SkAlphaType);
H A DTestListViewSceneBase.cpp28 void TestListViewSceneBase::createContent(int width, int height, Canvas& canvas) { argument
32 mItemWidth = std::min((height - mItemSpacing * 2), (int)dp(300));
35 for (int y = 0; y < height + (heightWithSpacing - 1); y += heightWithSpacing) {
43 mListView = TestUtils::createNode(0, 0, width, height,
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DEmbeddedContentContainer.java25 public void onSizeChanged(int width, int height); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerWindowManager.java49 public void add(View view, int width, int height) { argument
51 width, height, TYPE_DOCK_DIVIDER,
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DRawTexture.java29 public RawTexture(int width, int height, boolean opaque) { argument
31 setSize(width, height);
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DCubeRenderer.java85 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
86 gl.glViewport(0, 0, width, height);
94 float ratio = (float) width / height;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorSpace.java31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
39 * @param height the height of the image (must be a multiple of 2)
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
58 * @param height the height of the image
61 ByteBuffer input, ByteBuffer output, int width, int height) {
41 convertYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
60 convertArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
79 convertRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
98 convertRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
121 nativeYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
124 nativeArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
127 nativeRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
130 nativeRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DExposureFilter.java103 private static native float overExposureOperator(int width, int height, argument
105 private static native float underExposureOperator(int width, int height, argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGetBitmapSurfaceViewActivity.java128 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
H A DSingleFrameTextureViewTestActivity.java78 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
201 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument

Completed in 3381 milliseconds

1234567891011>>