/external/chromium_org/ui/gfx/ |
gdi_util.h | 18 GFX_EXPORT void CreateBitmapHeader(int width, int height, 23 void CreateBitmapHeaderWithColorDepth(int width, int height, int color_depth, 29 GFX_EXPORT void CreateBitmapV4Header(int width, int height, 33 void CreateMonochromeBitmapHeader(int width, int height, BITMAPINFOHEADER* hdr);
|
/external/chromium_org/ui/views/examples/ |
throbber_example.cc | 29 return gfx::Size(width(), height()); 36 (height() - ps.height()) / 2, 37 ps.width(), ps.height());
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_resize.h | 18 int height, 30 int height, 44 int height, 58 int height,
|
/external/libvpx/libvpx/vpx_scale/ |
yv12config.h | 59 int width, int height, int border); 61 int width, int height, int border); 65 int width, int height, int ss_x, int ss_y, 75 int width, int height, int ss_x, int ss_y,
|
/external/libvpx/libvpx/ |
y4menc.h | 24 int y4m_write_file_header(char *buf, size_t len, int width, int height,
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_decoder.c | 52 unsigned width, unsigned height, unsigned max_references, 59 assert(width > 0 && height > 0); 69 buffer_height = pot_buffers ? util_next_power_of_two(height) : align(height, VL_MACROBLOCK_HEIGHT);
|
/external/mesa3d/src/gallium/include/state_tracker/ |
drisw_api.h | 15 void *data, unsigned width, unsigned height);
|
/external/mesa3d/src/mesa/main/ |
drawtex.h | 35 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); 41 _mesa_DrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height); 47 _mesa_DrawTexs(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); 53 _mesa_DrawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
|
texstorage.h | 36 GLsizei width, GLsizei height); 41 GLsizei width, GLsizei height, GLsizei depth); 53 GLsizei width, GLsizei height); 58 GLsizei width, GLsizei height, GLsizei depth);
|
/external/pixman/demos/ |
gtk-utils.c | 11 int width, height; local 24 height = gdk_pixbuf_get_height (pixbuf); 29 if (!(data = malloc (width * height * sizeof (uint32_t)))) 33 for (j = 0; j < height; ++j) 65 format, width, height, data, width * 4); 75 int height, 79 8, width, height); 84 for (i = 0; i < height; ++i) 100 int height = pixman_image_get_height (pimage); local 113 format, width, height, stride) 131 int width, height; local 147 gtk_window_set_default_size (GTK_WINDOW (window), width, height); local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/ |
panoramiXext.h | 43 int height; /* height of this screen */ member in struct:__anon13189
|
/external/skia/src/core/ |
SkConfig8888.h | 28 bool convertPixelsTo(SkDstPixelInfo* dst, int width, int height) const;
|
/external/skia/src/gpu/ |
GrStencilBuffer.cpp | 22 // we should never have more than one stencil buffer with same combo of (width,height,samplecount) 23 void gen_cache_id(int width, int height, int sampleCnt, GrCacheID* cacheID) { 28 keyData[1] = height; 37 int height, 43 gen_cache_id(width, height, sampleCnt, &id);
|
/external/skia/src/svg/ |
SkSVGFilter.cpp | 15 SVG_ATTRIBUTE(height),
|
/external/skia/tests/ |
FillPathTest.cpp | 33 int height = 100; local 36 clip.set(0, height - expected_lines, width, height); 38 path.quadTo(SkIntToScalar(width/2), SkIntToScalar(height),
|
/external/skia/third_party/etc1/ |
etc1.h | 66 etc1_uint32 etc1_get_encoded_data_size(etc1_uint32 width, etc1_uint32 height); 75 int etc1_encode_image(const etc1_byte* pIn, etc1_uint32 width, etc1_uint32 height, 87 etc1_uint32 width, etc1_uint32 height, 96 void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height); 106 // Read the image height from a PKM header
|
/external/webrtc/test/testsupport/metrics/ |
video_metrics.cc | 35 int height, 42 frame_result.value = I420PSNR(ref, test, width, height); 45 frame_result.value = I420SSIM(ref, test, width, height); 84 int height, 90 assert(height > 0); 108 const int frame_length = 3 * width * height >> 1; 117 CalculateFrame(kPSNR, ref, test, width, height, frame_number, 121 CalculateFrame(kSSIM, ref, test, width, height, frame_number, 125 CalculateFrame(kPSNR, ref, test, width, height, frame_number, 127 CalculateFrame(kSSIM, ref, test, width, height, frame_number [all...] |
/frameworks/base/libs/hwui/ |
PixelBuffer.cpp | 36 CpuPixelBuffer(GLenum format, uint32_t width, uint32_t height); 44 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset); 50 CpuPixelBuffer::CpuPixelBuffer(GLenum format, uint32_t width, uint32_t height): 51 PixelBuffer(format, width, height) { 52 mBuffer = new uint8_t[width * height * formatSize(format)]; 74 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { 75 glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, width, height, 85 GpuPixelBuffer(GLenum format, uint32_t width, uint32_t height); 93 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset); 101 GpuPixelBuffer::GpuPixelBuffer(GLenum format, uint32_t width, uint32_t height) [all...] |
/frameworks/base/media/mca/effect/java/android/media/effect/ |
Effect.java | 55 * <p>The input texture must be a valid texture name with the given width and height and must be 71 * @param height The height of the input texture in pixels. 74 public abstract void apply(int inputTexId, int width, int height, int outputTexId);
|
/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); 116 * @param height the height of the image in pixels. 118 public static native void formatHeader(Buffer header, int width, int height); 133 * Read the image height from a PKM header
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
brightness.h | 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer);
|
colorspace.h | 31 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height); 35 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height); 39 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height); 43 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
|
contrast.h | 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer);
|
/frameworks/native/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); 98 // Read the image height from a PKM header
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_resize.h | 18 int height, 30 int height, 44 int height, 58 int height,
|