Searched defs:img (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DImageD3D.cpp20 ImageD3D *ImageD3D::makeImageD3D(Image *img) argument
22 ASSERT(HAS_DYNAMIC_TYPE(rx::ImageD3D*, img));
23 return static_cast<rx::ImageD3D*>(img);
/external/chromium_org/native_client_sdk/src/examples/demo/earth/
H A Dexample.js45 var img = new Image();
46 img.onload = function() {
48 graph.width = img.width;
49 graph.height = img.height;
51 context.drawImage(img, 0, 0);
52 var imageData = context.getImageData(0, 0, img.width, img.height);
56 'width' : img.width,
57 'height' : img.height,
60 img
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/earth_simd/
H A Dexample.js45 var img = new Image();
46 img.onload = function() {
48 graph.width = img.width;
49 graph.height = img.height;
51 context.drawImage(img, 0, 0);
52 var imageData = context.getImageData(0, 0, img.width, img.height);
56 'width' : img.width,
57 'height' : img.height,
60 img
[all...]
/external/clang/test/CodeGen/
H A D2009-08-14-vararray-crash.c5 typedef imgrow img[rb]; typedef
7 const img *br;
/external/libvpx/libvpx/vp9/
H A Dvp9_iface_common.h13 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, argument
22 img->fmt = VPX_IMG_FMT_I444;
25 img->fmt = VPX_IMG_FMT_I422;
29 img->fmt = VPX_IMG_FMT_I420;
31 img->w = yv12->y_stride;
32 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3);
33 img->d_w = yv12->y_crop_width;
34 img->d_h = yv12->y_crop_height;
35 img->x_chroma_shift = yv12->uv_width < yv12->y_width;
36 img
52 image2yuvconfig(const vpx_image_t *img, YV12_BUFFER_CONFIG *yv12) argument
[all...]
/external/pixman/pixman/
H A Dpixman-solid-fill.c55 pixman_image_t *img = _pixman_image_allocate (); local
57 if (!img)
60 img->type = SOLID;
61 img->solid.color = *color;
62 img->solid.color_32 = color_to_uint32 (color);
63 img->solid.color_float = color_to_float (color);
65 return img;
/external/chromium_org/extensions/renderer/resources/
H A Dimage_util.js11 var img = new Image();
13 img.onerror = function() {
17 img.onload = function() {
20 if (img.width <= 0 || img.height <= 0) {
26 if (imageSpec.width && imageSpec.width < img.width)
27 scaleFactor = imageSpec.width / img.width;
29 if (imageSpec.height && imageSpec.height < img.height) {
30 var heightScale = imageSpec.height / img.height;
35 canvas.width = img
[all...]
H A Dset_icon.js9 var img = new Image();
10 img.onerror = function() {
13 img.onload = function() {
15 canvas.width = img.width > iconSize ? iconSize : img.width;
16 canvas.height = img.height > iconSize ? iconSize : img.height;
20 canvas_context.drawImage(img, 0, 0, canvas.width, canvas.height);
25 img.src = path;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dlookahead.h21 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_iface_common.h13 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, argument
24 img->fmt = VPX_IMG_FMT_I444;
27 img->fmt = VPX_IMG_FMT_I422;
31 img->fmt = VPX_IMG_FMT_I420;
34 img->bit_depth = 8;
35 img->w = yv12->y_stride;
36 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3);
37 img->d_w = yv12->y_crop_width;
38 img->d_h = yv12->y_crop_height;
39 img
56 image2yuvconfig(const vpx_image_t *img, YV12_BUFFER_CONFIG *yv12) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglimage.c112 _eglInitImage(_EGLImage *img, _EGLDisplay *dpy) argument
114 _eglInitResource(&img->Resource, sizeof(*img), dpy);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_tex_obj.h77 intel_texture_image(struct gl_texture_image *img) argument
79 return (struct intel_texture_image *) img;
/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.h21 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.h27 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
/external/mesa3d/src/egl/main/
H A Deglimage.c112 _eglInitImage(_EGLImage *img, _EGLDisplay *dpy) argument
114 _eglInitResource(&img->Resource, sizeof(*img), dpy);
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex_obj.h77 intel_texture_image(struct gl_texture_image *img) argument
79 return (struct intel_texture_image *) img;
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dsimple_decoder.c129 vpx_image_t *img = NULL; local
136 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
137 vpx_img_write(img, outfile);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dmd5_helper.h24 void Add(const vpx_image_t *img) { argument
26 const uint8_t *buf = img->planes[plane];
32 (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
33 const int h = plane ? (img->d_h + img->y_chroma_shift) >>
34 img->y_chroma_shift : img->d_h;
35 const int w = (plane ? (img->d_w + img->x_chroma_shift) >>
36 img
[all...]
H A Duser_priv_test.cc42 // compares the user_priv from return img with the original user_priv to see if
66 const vpx_image_t *img = NULL; local
69 while ((img = dec_iter.Next())) {
71 CheckUserPrivateData(img->user_priv, NULL);
73 CheckUserPrivateData(img->user_priv, &frame_num);
81 CheckUserPrivateData(ref.img.user_priv, NULL);
83 md5.Add(img);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_lookahead.h29 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
/external/chromium_org/ui/gfx/image/
H A Dimage_util_unittest.cc36 gfx::ImageSkia img = gfx::ImageSkia::CreateFrom1xBitmap(bitmap1); local
39 gfx::VisibleMargins(img, &x, &y);
42 EXPECT_EQ(16, img.width());
/external/libvpx/libvpx/examples/
H A Dsimple_decoder.c133 vpx_image_t *img = NULL; local
140 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
141 vpx_img_write(img, outfile);
/external/libvpx/libvpx/test/
H A Ddecode_test_driver.cc41 const vpx_image_t *img = NULL; local
44 while ((img = dec_iter.Next()))
45 DecompressedFrameHook(*img, video->frame_number());
H A Dmd5_helper.h24 void Add(const vpx_image_t *img) { argument
26 const uint8_t *buf = img->planes[plane];
31 const int h = plane ? (img->d_h + img->y_chroma_shift) >>
32 img->y_chroma_shift : img->d_h;
33 const int w = plane ? (img->d_w + img->x_chroma_shift) >>
34 img->x_chroma_shift : img
[all...]
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/cube/
H A Dexample.js204 var img = new Image();
205 img.onload = function() {
207 graph.width = img.width;
208 graph.height = img.height;
210 context.drawImage(img, 0, 0);
211 var imageData = context.getImageData(0, 0, img.width, img.height);
215 'width' : img.width,
216 'height' : img.height,
222 img
[all...]

Completed in 8580 milliseconds

1234567891011>>