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

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xme.h 27 unsigned short height; member in struct:__anon13244
38 int width, int height, int refresh);
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_modes_c.h 39 extern int ph_GetVideoMode(int width, int height, int bpp);
40 extern int get_mode_any_format(int width, int height, int bpp);
  /external/skia/include/gpu/
GrFontScaler.h 30 virtual bool getPackedGlyphImage(GrGlyph::PackedID, int width, int height,
35 // (should be width*height bytes in size)
36 virtual bool getPackedGlyphDFImage(GrGlyph::PackedID, int width, int height,
  /external/skia/src/image/
SkImage_Base.h 15 SkImage_Base(int width, int height) : INHERITED(width, height) {}
  /frameworks/base/core/jni/android/graphics/
Picture.h 40 Canvas* beginRecording(int width, int height);
46 int height() const;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
exposure.h 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer);
33 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer);
  /hardware/intel/common/libva/test/putsurface/
putsurface_android.cpp 47 static int create_window(void *win_display, int x, int y, int width, int height);
48 static int check_window_event(void *x11_display, void *win, int *width, int *height, int *quit);
63 static int create_window(void *win_display, int x, int y, int width, int height)
69 width, height,
82 surface_ctrl0->setSize(width, height);
96 width, height,
109 surface_ctrl1->setSize(width, height);
119 int check_window_event(void *win_display, void *drawble, int *width, int *height, int *quit)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
y4menc.c 13 int y4m_write_file_header(char *buf, size_t len, int width, int height,
21 return snprintf(buf, len, "YUV4MPEG2 W%u H%u F%u:%u I%c %s", width, height,
  /hardware/intel/img/psb_video/src/
psb_surface.c 40 int width, int height, int fourcc, unsigned int flags,
59 if ((width <= 0) || (width * height > 5120 * 5120) || (height <= 0)) {
92 psb_surface->chroma_offset = psb_surface->stride * height;
93 psb_surface->size = (psb_surface->stride * height * 3) / 2;
101 psb_surface->size = psb_surface->stride * height;
104 if ((width <= 0) || (width * height > 5120 * 5120) || (height <= 0)) {
137 psb_surface->chroma_offset = psb_surface->stride * height;
138 psb_surface->size = psb_surface->stride * height * 2
    [all...]
  /packages/apps/Gallery2/jni/filters/
negative.c 19 void JNIFUNCF(ImageFilterNegative, nativeApplyFilter, jobject bitmap, jint width, jint height)
24 int tot_len = height * width * 4;
redeye.c 20 void JNIFUNCF(ImageFilterRedEye, nativeApplyFilter, jobject bitmap, jint width, jint height, jshortArray vrect)
27 filterRedEye(rgb,rgb,width,height,rect);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
ProtoBufUtils.java 31 int height = glMsg.getFb().getHeight(); local
33 if (width * height == 0) {
38 byte[] uncompressed = new byte[width * height * 4];
42 assert size == width * height * 4 : "Unexpected image size after decompression.";
50 height,
55 byte[] alpha = new byte[width*height];
56 for (int i = 0; i < width * height; i++) {
61 imageData = imageData.scaledTo(imageData.width, -imageData.height);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeMacSubWindow.m 38 int x, int y,int width, int height){
46 int cocoa_y = (int)content_rect.size.height - (y + height);
47 NSRect contentRect = NSMakeRect(x, cocoa_y, width, height);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
demo_user_login.css 8 height: 100%;
26 height: 100%;
47 height: 40px;
  /external/chromium_org/media/base/simd/
convert_rgb_to_yuv.h 21 int height,
31 int height,
41 int height,
51 int height,
61 int height,
71 int height,
  /external/chromium_org/mojo/examples/pepper_container_app/
type_converters.h 41 size->height = input.height;
52 static_cast<int32_t>(input->height));
63 rect->height = input.size.height;
73 return PP_MakeRectFromXYWH(0, 0, input->width, input->height);
  /external/chromium_org/remoting/protocol/
mouse_input_filter.cc 37 int y = out_event.y() * output_max_.height();
38 y = (y + input_max_.height() / 2) / input_max_.height();
39 out_event.set_y(std::max(0, std::min(output_max_.height(), y)));
46 input_max_.set(size.width() - 1, size.height() - 1);
50 output_max_.set(size.width() - 1, size.height() - 1);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ColumnInfo.h 64 // Set our count and height. This is enough info for a RenderBlock to compute page rects
66 void setColumnCountAndHeight(int count, LayoutUnit height)
69 m_columnHeight = height;
71 void setColumnHeight(LayoutUnit height) { m_columnHeight = height; }
73 void updateMinimumColumnHeight(LayoutUnit height) { m_minimumColumnHeight = std::max(height, m_minimumColumnHeight); }
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Image.cpp 112 if (norm.height() < 0) {
113 norm.setY(norm.y() + norm.height());
114 norm.setHeight(-norm.height());
138 intrinsicTileSize.setHeight(scaledTileSize.height());
141 scaledTileSize.height() / intrinsicTileSize.height());
143 FloatSize actualTileSize(scaledTileSize.width() + repeatSpacing.width(), scaledTileSize.height() + repeatSpacing.height());
146 oneTileRect.setY(destRect.y() + fmodf(fmodf(-srcPoint.y(), actualTileSize.height()) - actualTileSize.height(), actualTileSize.height()))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
yuvframegenerator.h 21 // Constructs a frame-generator that produces frames of size |width|x|height|.
24 // |true| then |width|x|height| should be at least 160x100; otherwise this
26 YuvFrameGenerator(int width, int height, bool enable_barcode);
44 void GetBarcodeBounds(int* top, int* left, int* width, int* height);
55 int DrawSideGuardBars(int x, int y, int height);
56 int DrawMiddleGuardBars(int x, int y, int height);
57 int DrawEanEncodedDigit(int digit, int x, int y, int height, bool r_code);
59 int width, int height, int pitch, uint8 value);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_overlay.h 139 uint32 *height, // IN / OUT
154 *height = (*height + 1) & ~1;
161 *size *= *height;
173 tmp *= (*height >> 1);
191 *size *= *height;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_masks.c 39 VGint width, VGint height)
43 if (width <=0 || height <= 0) {
57 mask_fill(x, y, width, height, 0.f);
59 mask_fill(x, y, width, height, 1.f);
62 mask_using_image(image, operation, x, y, width, height);
65 mask_using_layer(layer, operation, x, y, width, height);
72 VGint width, VGint height)
77 if (width <= 0 || height <= 0) {
85 x, y, width, height,
94 (x == 0 && y == 0 && width == stfb->width && height == stfb->height))
    [all...]
mask.h 36 struct vg_mask_layer *mask_layer_create(VGint width, VGint height);
40 VGint width, VGint height,
47 VGint width, VGint height);
56 VGint width, VGint height);
60 VGint width, VGint height);
62 VGint width, VGint height,
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_xgl_api.h 32 void __applegl_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
34 void __applegl_glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
41 void __applegl_glViewport(GLint x, GLint y, GLsizei width, GLsizei height);
  /external/chromium_org/third_party/skia/src/images/
SkPageFlipper.cpp 22 SkPageFlipper::SkPageFlipper(int width, int height) {
24 fHeight = height;
28 fDirty0->setRect(0, 0, width, height);
32 void SkPageFlipper::resize(int width, int height) {
34 fHeight = height;
37 fDirty1->setRect(0, 0, width, height);

Completed in 508 milliseconds

<<11121314151617181920>>