/development/tools/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); 96 // Read the image width from a PKM header
|
/development/tools/emulator/opengl/system/GLESv2_enc/ |
GL2EncoderUtils.cpp | 21 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack) 25 return ctx->state()->pixelDataSize(width, height, format, type, pack); 28 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack) 30 size_t layerSize = pixelDataSize(self, width, height, format, type, pack);
|
/development/tools/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/chrome/browser/ui/views/infobars/ |
infobar_button_border.cc | 73 canvas->DrawBitmapInt(*set->top, 0, 0, set->top->width(), set->top->height(), 74 set->top_left->width(), 0, 75 bounds.width() - set->top_right->width() - set->top_left->width(), 80 bounds.width() - set->top_right->width(), 0); 83 canvas->DrawBitmapInt(*set->left, 0, 0, set->left->width(), 84 set->left->height(), 0, set->top_left->height(), set->top_left->width(), 88 canvas->DrawBitmapInt(*set->center, 0, 0, set->center->width(), [all...] |
/external/chromium/chrome/browser/ui/views/ |
theme_helpers.h | 20 // The width parameter is the width of horizontal gradient that will be 23 void GetRebarGradientColors(int width, int x1, int x2,
|
/external/libvpx/vp8/common/ |
alloccommon.h | 20 int vp8_alloc_frame_buffers(VP8_COMMON *oci, int width, int height);
|
extend.h | 19 void vp8_extend_to_multiple_of16(YV12_BUFFER_CONFIG *ybf, int width, int height);
|
/external/qemu/android/camera/ |
camera-format-converters.h | 49 * framebuffer_size, width, height - Converting framebuffer byte size, width,
62 int width,
|
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/ |
panoramiXext.h | 42 int width; /* width of this screen */ member in struct:__anon9726
|
/external/quake/quake/src/QW/client/ |
menu.h | 38 void M_DrawTextBox (int x, int y, int width, int lines);
|
/external/skia/include/core/ |
SkPicture.h | 36 @param width the width of the virtual device the picture records. 65 @param width the base width for the picture, as if the recording 66 canvas' bitmap had this width. 67 @param height the base width for the picture, as if the recording 72 SkCanvas* beginRecording(int width, int height, uint32_t recordFlags = 0); 91 /** Return the width of the picture's recording canvas. This 94 @return the width of the picture's recording canvas 96 int width() const { return fWidth; function in class:SkPicture [all...] |
/external/skia/src/core/ |
SkBlitter_A1.cpp | 25 void SkA1_Blitter::blitH(int x, int y, int width) { 27 (unsigned)(x + width) <= (unsigned)fDevice.width()); 33 int right = x + width;
|
/external/skia/src/images/ |
SkBitmap_RLEPixels.h | 8 SkBitmap_RLEPixels(int width, int height);
|
/external/skia/src/svg/ |
SkSVGFilter.cpp | 24 SVG_ATTRIBUTE(width),
|
/external/webkit/Source/WebCore/platform/graphics/ |
RoundedIntRect.cpp | 49 if (!m_topLeft.width() || !m_topLeft.height()) 52 if (!m_topRight.width() || !m_topRight.height()) 55 if (!m_bottomLeft.width() || !m_bottomLeft.height()) 58 if (!m_bottomRight.width() || !m_bottomRight.height()) 65 m_topLeft.setWidth(max(0, m_topLeft.width() + leftWidth)); 68 m_topRight.setWidth(max(0, m_topRight.width() + rightWidth)); 71 m_bottomLeft.setWidth(max(0, m_bottomLeft.width() + leftWidth)); 74 m_bottomRight.setWidth(max(0, m_bottomRight.width() + rightWidth)); 116 RoundedIntRect::RoundedIntRect(int x, int y, int width, int height) 117 : m_rect(x, y, width, height [all...] |
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
ImageGStreamerQt.cpp | 31 int width = 0, height = 0; local 34 if (!gst_video_format_parse_caps(caps, &format, &width, &height)) { 47 return adoptRef(new ImageGStreamer(buffer, IntSize(width, height), imageFormat)); 54 QImage image(GST_BUFFER_DATA(buffer), size.width(), size.height(), imageFormat);
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
IntSizeHaiku.cpp | 44 return BSize(width(), height());
|
/external/webkit/Source/WebCore/platform/gtk/ |
FileChooserGtk.cpp | 51 String FileChooser::basenameForWidth(const Font& font, int width) const 53 if (width <= 0) 63 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font); 65 return StringTruncator::centerTruncate(string, width, font);
|
/external/webkit/Source/WebCore/platform/win/ |
BitmapInfo.cpp | 36 BitmapInfo bitmapInfoForSize(int width, int height, BitmapInfo::BitCount bitCount) 39 bitmapInfo.bmiHeader.biWidth = width; 56 return bitmapInfoForSize(size.width(), size.height(), bitCount); 61 return bitmapInfoForSize(size.width(), -size.height(), bitCount);
|
/frameworks/base/core/java/android/view/ |
GLES20Layer.java | 32 GLES20Layer(int width, int height, boolean opaque) { 33 super(width, height, opaque); 51 void update(int width, int height, boolean isOpaque) { 52 super.update(width, height, isOpaque);
|
/frameworks/base/core/jni/android/graphics/ |
YuvToJpegEncoder.cpp | 24 bool YuvToJpegEncoder::encode(SkWStream* stream, void* inYuv, int width, 39 setJpegCompressStruct(&cinfo, width, height, jpegQuality); 51 int width, int height, int quality) { 52 cinfo->image_width = width; 82 int width = cinfo->image_width; local 85 uint8_t* vuPlanar = yuv + offsets[1]; //width * height; 86 uint8_t* uRows = new uint8_t [8 * (width >> 1)]; 87 uint8_t* vRows = new uint8_t [8 * (width >> 1)]; 93 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width); 101 // height and width are both halved because of downsamplin 155 int width = cinfo->image_width; local [all...] |
/frameworks/base/core/jni/ |
android_text_AndroidCharacter.cpp | 97 int width = u_getIntPropertyValue(input, UCHAR_EAST_ASIAN_WIDTH); local 98 if (width < 0 || width >= U_EA_COUNT) 99 width = PROPERTY_UNDEFINED; 101 return width; 130 int width = u_getIntPropertyValue(c, UCHAR_EAST_ASIAN_WIDTH); local 131 if (width < 0 || width >= U_EA_COUNT) 132 width = PROPERTY_UNDEFINED; 134 dest[i++] = width; 138 int width = u_getIntPropertyValue(c, UCHAR_EAST_ASIAN_WIDTH); local [all...] |
/frameworks/base/opengl/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); 94 // Read the image width from a PKM header
|
/frameworks/base/opengl/java/android/opengl/ |
ETC1.java | 86 public static native int getEncodedDataSize(int width, int height); 97 public static native void encodeImage(Buffer in, int width, int height, 110 int width, int height, int pixelSize, int stride); 115 * @param width the width of the image in pixels. 118 public static native void formatHeader(Buffer header, int width, int height); 127 * Read the image width from a PKM header
|