Searched defs:width (Results 1 - 25 of 347) sorted by relevance

1234567891011>>

/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmb_utils.cpp25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width) argument
42 comp += width;
43 prev += width;
53 comp += width;
54 prev += width;
64 comp += width;
65 prev += width;
74 comp += width;
75 prev += width;
86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width) argument
[all...]
H A Dget_pred_outside.cpp34 width = width of the VOP in pixels (x axis); full-pel resolution;
198 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
200 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
202 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
204 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
206 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
208 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
210 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
216 *((uint32*)(ptr+=16)) = *((uint32*)(prev+=width)); \
241 GetPredOutside( int xpos, int ypos, uint8 *c_prev, uint8 *pred_block, int width, int height, int rnd1, int pred_width ) argument
[all...]
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_image.h48 u32 width; member in struct:__anon873
/frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNILib.java28 * @param width the current view width
31 public static native void init(int width, int height); argument
/frameworks/base/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNILib.java28 * @param width the current view width
31 public static native void init(int width, int height); argument
H A DGLJNIView.java75 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
76 GLJNILib.init(width, height);
/frameworks/base/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfLib.java28 * @param width the current view width
31 public static native void init(int width, int height); argument
/frameworks/base/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualLib.java28 * @param width the current view width
31 public static native void init(int width, int height); argument
/frameworks/base/core/java/android/gesture/
H A DOrientedBoundingBox.java28 public final float width; field in class:OrientedBoundingBox
38 width = w;
58 point[0] = -width / 2;
66 point[0] = -width / 2;
71 point[0] = width / 2;
76 point[0] = width / 2;
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DRectShape.java43 protected void onResize(float width, float height) { argument
44 mRect.set(0, 0, width, height);
H A DPathShape.java41 * @param stdWidth the standard width for the shape. Any changes to the
42 * width with resize() will result in a width scaled based
43 * on the new width divided by this width.
63 protected void onResize(float width, float height) { argument
64 mScaleX = width / mStdWidth;
H A DShape.java33 * Returns the width of the Shape.
61 * @param width the width of the shape (in pixels)
64 public final void resize(float width, float height) { argument
65 if (width < 0) {
66 width = 0;
71 if (mWidth != width || mHeight != height) {
72 mWidth = width;
74 onResize(width, height);
91 * @param width th
94 onResize(float width, float height) argument
[all...]
/frameworks/base/include/ui/
H A DVirtualKeyMap.h38 int32_t width; member in struct:android::VirtualKeyDefinition
/frameworks/base/native/include/android/
H A Dnative_window.h40 int32_t width; member in struct:ANativeWindow_Buffer
46 // memory. This may be >= width.
71 * Return the current width in pixels of the window surface. Returns a
91 * The width and height control the number of pixels in the buffers, not the
99 * width and height must be either both zero or both non-zero.
103 int32_t width, int32_t height, int32_t format);
H A Dbitmap.h41 uint32_t width; member in struct:__anon960
/frameworks/base/opengl/tests/testPauseResume/src/com/android/test/
H A DTestView.java75 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGetBitmapActivity.java81 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
94 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
/frameworks/base/core/java/android/view/
H A DGLES20Layer.java32 GLES20Layer(int width, int height, boolean opaque) { argument
33 super(width, height, opaque);
51 void update(int width, int height, boolean isOpaque) { argument
52 super.update(width, height, isOpaque);
H A DGLES20RenderLayer.java33 GLES20RenderLayer(int width, int height, boolean isOpaque) { argument
34 super(width, height, isOpaque);
37 mLayer = GLES20Canvas.nCreateLayer(width, height, isOpaque, layerInfo);
56 void resize(int width, int height) { argument
57 if (!isValid() || width <= 0 || height <= 0) return;
59 mWidth = width;
62 if (width != mLayerWidth || height != mLayerHeight) {
65 GLES20Canvas.nResizeLayer(mLayer, width, height, layerInfo);
H A DGLES20TextureLayer.java50 void resize(int width, int height) { argument
75 void update(int width, int height, boolean isOpaque) { argument
76 super.update(width, height, isOpaque);
77 GLES20Canvas.nUpdateTextureLayer(mLayer, width, height, isOpaque, mSurface);
/frameworks/base/include/media/stagefright/
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);
70 int32_t width() const {return mWidth;} 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/base/libs/hwui/
H A DVertex.h75 float width; member in struct:android::uirenderer::AAVertex
78 static inline void set(AAVertex* vertex, float x, float y, float width, float length) { argument
80 vertex[0].width = width;
84 static inline void setColor(AAVertex* vertex, float width, float length) { argument
85 vertex[0].width = width;
/frameworks/base/libs/rs/driver/
H A DrsdFrameBufferObj.h38 void setDimensions(uint32_t width, uint32_t height) { argument
39 mWidth = width;
/frameworks/base/media/libstagefright/rtsp/
H A Drtp_test.cpp200 int32_t width, height; local
201 CHECK(decoder->getFormat()->findInt32(kKeyWidth, &width));
203 printf("INFO_FORMAT_CHANGED %d x %d\n", width, height);
/frameworks/base/opengl/java/android/opengl/
H A DTexture.java33 private int width, height, bpp; field in class:Texture
41 // width
46 // pixel (width - 1, height - 1)
53 this.width = readInt16(is);
57 int npixels = width*height;
90 int width, int height,
114 width, height,
128 width, height,
85 loadTexture(GL10 gl, int textureUnit, int minFilter, int magFilter, int wrapS, int wrapT, int mode, int width, int height, int dataType, Buffer data) argument

Completed in 798 milliseconds

1234567891011>>