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

123456789

/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/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/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/camera/
H A DCameraHardwareInterface.h35 uint32_t width; /* Image width */ member in struct:android::image_rect_struct
/frameworks/base/include/surfaceflinger/
H A DISurfaceComposerClient.h53 uint32_t width; member in struct:android::ISurfaceComposerClient::surface_data_t
/frameworks/base/include/ui/
H A Dandroid_native_buffer.h49 int width; member in struct:android_native_buffer_t
/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 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format);
H A Dbitmap.h41 uint32_t width; member in struct:__anon656
/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/core/java/android/service/urlrenderer/
H A DUrlRenderer.java75 * @param width The desired width of the result.
79 public void render(List<String> urls, int width, int height, argument
83 mService.render(urls, width, height,
H A DUrlRendererService.java57 public void render(List<String> urls, int width, int height,
59 processRequest(urls, width, height,
87 * @param width The desired width of the result.
91 public abstract void processRequest(List<String> urls, int width, argument
/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
/frameworks/base/services/surfaceflinger/
H A DTextureManager.h42 Image() : name(-1U), image(EGL_NO_IMAGE_KHR), width(0), height(0),
46 GLuint width; member in struct:android::Image
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DImageDescriptor.java24 int width; field in class:ImageDescriptor
40 width = 0;
59 d.width = rawData[valueIndex++] & 0xff;
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java104 width() method in class:PackedObjectVector
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java87 // Check against minimum height and width
96 * Returns a set of layout parameters with a width of
161 * Creates a new set of layout parameters with the specified width,
164 * @param width the width, either {@link #MATCH_PARENT},
171 public LayoutParams(int width, int height, int x, int y) { argument
172 super(width, height);
213 return output + "Absolute.LayoutParams={width="
214 + sizeToString(width) + ", height=" + sizeToString(height)
/frameworks/base/graphics/java/android/graphics/
H A DLargeBitmap.java70 /** Returns the original image's width */
123 int start_x, int start_y, int width, int height,
122 nativeDecodeRegion(int lbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument

Completed in 355 milliseconds

123456789