HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 401 - 425 of 11432) sorted by null

<<11121314151617181920>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
yv12config.h 61 int width, int height, int border);
63 int width, int height, int border);
67 int width, int height, int ss_x, int ss_y,
77 int width, int height, int ss_x, int ss_y,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
y4menc.h 24 int y4m_write_file_header(char *buf, size_t len, int width, int height,
  /packages/apps/Camera/src/com/android/camera/
MosaicRenderer.java 41 * Pass the drawing surface's width and height to initialize the
45 * @param height height of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation);
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetNative.java 34 * @param height the height of the input image.
36 * @param outputSize the width and height of the square output image.
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize,
  /packages/apps/Gallery2/src/com/android/photos/views/
SquareImageView.java 44 int height = width; local
46 height = Math.min(height, MeasureSpec.getSize(heightMeasureSpec));
48 setMeasuredDimension(width, height);
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRenderer.java 41 * Pass the drawing surface's width and height to initialize the
45 * @param height height of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AutoResizeListView.java 26 * A list view that auto resizes depending on the height of the viewing frame. This means this
46 // The desired height is the available height we have for VIEWING.
51 // Measure height and obey the measure mode.
52 final int height; local
54 height = heightSize;
57 height = Math.min(desiredHeight, heightSize);
61 heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, heightMode);
  /sdk/emulator/opengl/host/libs/Translator/include/ETC1/
etc1.h 58 etc1_uint32 etc1_get_encoded_data_size(etc1_uint32 width, etc1_uint32 height);
67 int etc1_encode_image(const etc1_byte* pIn, etc1_uint32 width, etc1_uint32 height,
79 etc1_uint32 width, etc1_uint32 height,
88 void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height);
98 // Read the image height from a PKM header
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
etc1.h 60 etc1_uint32 etc1_get_encoded_data_size(etc1_uint32 width, etc1_uint32 height);
69 int etc1_encode_image(const etc1_byte* pIn, etc1_uint32 width, etc1_uint32 height,
81 etc1_uint32 width, etc1_uint32 height,
90 void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height);
100 // Read the image height from a PKM header
  /sdk/emulator/opengl/tests/ut_renderer/
NativeWindowing.h 24 virtual NativeWindowType createNativeWindow(NativeDisplayType dpy, int width, int height) = 0;
X11Windowing.h 23 NativeWindowType createNativeWindow(NativeDisplayType _dpy, int width, int height);
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bar_instructions_view.cc 52 int ascent = 0, descent = 0, height = 0, width = 0; local
59 descent = std::max(descent, pref.height() - baseline);
61 height = std::max(pref.height(), height);
67 height = std::max(ascent + descent, height);
68 return gfx::Size(width, height);
82 y = (height() - pref.height()) / 2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeNonMacCommon.cpp 51 return IntRect(scrollbar->x(), scrollbar->y(), size.width(), size.height());
67 y = scrollbar->y() + scrollbar->height() - size.height();
69 return IntRect(x, y, size.width(), size.height());
83 if (scrollbar->height() <= 2 * bs.height() + 1)
85 return IntRect(scrollbar->x(), scrollbar->y() + bs.height(), thickness, scrollbar->height() - 2 * bs.height());
100 if (rect.height() <= 0 || rect.width() <= 0
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
27 static int parse_dim(char *v, int *width, int *height) {
34 *height = atoi(&x[1]);
35 if (*width <= 0 || *height <= 0)
48 int width, height, target_width, target_height; local
58 if (!parse_dim(argv[2], &width, &height)) {
87 width, height);
95 inbuf = (uint8_t*)malloc(width * height * 3 / 2);
97 inbuf_u = inbuf + width * height;
98 inbuf_v = inbuf_u + width * height / 4
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
drawtex.c 36 GLfloat width, GLfloat height)
43 if (width <= 0.0f || height <= 0.0f) {
44 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTex(width or height <= 0)");
54 ctx->Driver.DrawTex(ctx, x, y, z, width, height);
61 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height)
64 draw_texture(ctx, x, y, z, width, height);
77 _mesa_DrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height)
81 (GLfloat) width, (GLfloat) height);
95 _mesa_DrawTexs(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height)
99 (GLfloat) width, (GLfloat) height);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureRecorder.cpp 20 SkCanvas* SkPictureRecorder::beginRecording(SkScalar width, SkScalar height,
24 return EXPERIMENTAL_beginRecording(width, height, bbhFactory);
26 return DEPRECATED_beginRecording(width, height, bbhFactory, recordFlags);
30 SkCanvas* SkPictureRecorder::DEPRECATED_beginRecording(SkScalar width, SkScalar height,
34 fCullHeight = height;
36 const SkISize size = SkISize::Make(width, height);
41 fBBH.reset((*bbhFactory)(width, height));
52 SkCanvas* SkPictureRecorder::EXPERIMENTAL_beginRecording(SkScalar width, SkScalar height,
55 fCullHeight = height;
58 fBBH.reset((*bbhFactory)(width, height));
    [all...]
  /external/libvpx/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
27 static int parse_dim(char *v, int *width, int *height) {
34 *height = atoi(&x[1]);
35 if (*width <= 0 || *height <= 0)
48 int width, height, target_width, target_height; local
58 if (!parse_dim(argv[2], &width, &height)) {
87 width, height);
95 inbuf = (uint8_t*)malloc(width * height * 3 / 2);
97 inbuf_u = inbuf + width * height;
98 inbuf_v = inbuf_u + width * height / 4
    [all...]
  /external/mesa3d/src/mesa/main/
drawtex.c 36 GLfloat width, GLfloat height)
43 if (width <= 0.0f || height <= 0.0f) {
44 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTex(width or height <= 0)");
54 ctx->Driver.DrawTex(ctx, x, y, z, width, height);
61 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height)
64 draw_texture(ctx, x, y, z, width, height);
77 _mesa_DrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height)
81 (GLfloat) width, (GLfloat) height);
95 _mesa_DrawTexs(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height)
99 (GLfloat) width, (GLfloat) height);
    [all...]
  /external/skia/gm/
bitmapcopy.cpp 30 static void draw_checks(SkCanvas* canvas, int width, int height) {
34 SkIntToScalar(width / 2), SkIntToScalar(height / 2), paint);
37 SkIntToScalar(width), SkIntToScalar(height / 2), paint);
39 canvas->drawRectCoords(SkIntToScalar(0), SkIntToScalar(height / 2),
40 SkIntToScalar(width / 2), SkIntToScalar(height), paint);
42 canvas->drawRectCoords(SkIntToScalar(width / 2), SkIntToScalar(height / 2),
43 SkIntToScalar(width), SkIntToScalar(height), paint);
81 SkScalar height = SkIntToScalar(40); local
82 if (paint.getFontSpacing() > height) {
83 height = paint.getFontSpacing()
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
27 static int parse_dim(char *v, int *width, int *height) {
34 *height = atoi(&x[1]);
35 if (*width <= 0 || *height <= 0)
48 int width, height, target_width, target_height; local
58 if (!parse_dim(argv[2], &width, &height)) {
87 width, height);
95 inbuf = (uint8_t*)malloc(width * height * 3 / 2);
97 inbuf_u = inbuf + width * height;
98 inbuf_v = inbuf_u + width * height / 4
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 71 private SparseArrayBitmapPool getPoolForDimensions(int width, int height) {
72 int index = getPoolIndexForDimensions(width, height);
80 private int getPoolIndexForDimensions(int width, int height) {
81 if (width <= 0 || height <= 0) {
84 if (width == height) {
88 if (width > height) {
89 min = height;
93 max = height;
125 * @return Bitmap from the pool with the desired height/width or null if none available.
127 public Bitmap get(int width, int height) {
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
FlockingScene.h 24 FlockingScene(int width, int height);
35 Matrix* setUpProjectionMatrix(float width, float height);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PixelXorXfermodeTest.java 31 int height = 100; local
32 Bitmap b1 = Bitmap.createBitmap(width / 2, height, Config.ARGB_8888);
34 Bitmap b2 = Bitmap.createBitmap(width, height / 2, Config.ARGB_8888);
37 Bitmap target = Bitmap.createBitmap(width, height, Config.ARGB_8888);
43 canvas.drawBitmap(b2, 0, height / 2, p);
44 assertEquals(Color.WHITE, target.getPixel(width / 4, height / 4));
46 assertEquals(Color.YELLOW, target.getPixel(width / 4, height * 3 / 4));
48 assertEquals(Color.BLUE, target.getPixel(width * 3 / 4, height * 3 / 4));
  /device/generic/goldfish/opengl/system/GLESv2_enc/
GL2EncoderUtils.h 21 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack);
22 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack);
  /external/chromium-trace/trace-viewer/src/tcmalloc/
heap_instance_track.css 7 height: 150px;

Completed in 1968 milliseconds

<<11121314151617181920>>