Searched defs:img (Results 26 - 50 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/earth/
H A Dexample.js214 var img = new Image();
215 img.onload = function() {
217 graph.width = img.width;
218 graph.height = img.height;
220 context.drawImage(img, 0, 0);
221 var imageData = context.getImageData(0, 0, img.width, img.height);
225 'width' : img.width,
226 'height' : img.height,
232 img
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Ddecode_with_drops.c116 vpx_image_t *img = NULL; local
132 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
133 vpx_img_write(img, outfile);
H A Dpostproc.c99 vpx_image_t *img = NULL; local
122 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
123 vpx_img_write(img, outfile);
H A Ddecode_to_md5.c44 static void get_image_md5(const vpx_image_t *img, unsigned char digest[16]) { argument
51 const unsigned char *buf = img->planes[plane];
52 const int stride = img->stride[plane];
53 const int w = plane ? (img->d_w + 1) >> 1 : img->d_w;
54 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h;
112 vpx_image_t *img = NULL; local
119 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
122 get_image_md5(img, diges
[all...]
H A Dvp8cx_set_ref.c68 vpx_image_t *img,
74 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, 0,
172 ref.img = raw;
67 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, VpxVideoWriter *writer) argument
H A Dvp9_lossless_encoder.c31 vpx_image_t *img,
38 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1,
30 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, int flags, VpxVideoWriter *writer) argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dtest_vector_test.cc45 virtual void DecompressedFrameHook(const vpx_image_t& img, argument
57 md5_res.Add(&img);
H A Ddecode_test_driver.cc99 const vpx_image_t *img = NULL; local
102 while ((img = dec_iter.Next()))
103 DecompressedFrameHook(*img, video->frame_number());
H A Dtile_independence_test.cc66 const vpx_image_t *img = dec->GetDxData().Next(); local
67 md5->Add(img);
/external/libvpx/libvpx/examples/
H A Dpostproc.c101 vpx_image_t *img = NULL; local
124 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
125 vpx_img_write(img, outfile);
H A Ddecode_to_md5.c46 static void get_image_md5(const vpx_image_t *img, unsigned char digest[16]) { argument
53 const unsigned char *buf = img->planes[plane];
54 const int stride = img->stride[plane];
55 const int w = plane ? (img->d_w + 1) >> 1 : img->d_w;
56 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h;
114 vpx_image_t *img = NULL; local
121 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
124 get_image_md5(img, diges
[all...]
H A Ddecode_with_drops.c118 vpx_image_t *img = NULL; local
134 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
135 vpx_img_write(img, outfile);
H A Dvp8cx_set_ref.c69 vpx_image_t *img,
74 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, 0,
167 ref.img = raw;
68 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, VpxVideoWriter *writer) argument
/external/libvpx/libvpx/test/
H A Dtest_vector_test.cc42 virtual void DecompressedFrameHook(const vpx_image_t& img, argument
54 md5_res.Add(&img);
/external/chromium_org/ash/system/user/
H A Drounded_image_view.cc24 void RoundedImageView::SetImage(const gfx::ImageSkia& img, argument
26 image_ = img;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
H A Dpopup.js38 var img = new Image();
39 img.onload = function() {
40 blankClockImage = img;
44 img.src = 'blank-clock-150.png';
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceLoadPriorityOptimizer.cpp111 void ResourceLoadPriorityOptimizer::notifyImageResourceVisibility(ImageResource* img, VisibilityStatus status, const LayoutRect& screenRect) argument
113 if (!img || img->isLoaded())
120 ImageResourceMap::AddResult result = m_imageResources.add(img->identifier(), adoptPtr(new ResourceAndVisibility(img, status, screenArea)));
/external/chromium_org/third_party/angle/samples/angle/multi_texture/
H A DMultiTexture.cpp31 TGAImage img; local
32 if (!LoadTGAImageFromFile(path, &img))
37 return LoadTextureFromTGAImage(img);
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dvpx_decoder.c131 vpx_image_t *img; local
134 img = NULL;
136 img = ctx->iface->dec.get_frame(get_alg_priv(ctx), iter);
138 return img;
H A Dvpx_image.c18 static vpx_image_t *img_alloc_helper(vpx_image_t *img, argument
129 if (!img) {
130 img = (vpx_image_t *)calloc(1, sizeof(vpx_image_t));
132 if (!img)
135 img->self_allocd = 1;
137 memset(img, 0, sizeof(vpx_image_t));
140 img->img_data = img_data;
149 img->img_data = (uint8_t *)vpx_memalign(buf_align, (size_t)alloc_size);
150 img->img_data_owner = 1;
153 if (!img
177 vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align) argument
185 vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int stride_align, unsigned char *img_data) argument
196 vpx_img_set_rect(vpx_image_t *img, unsigned int x, unsigned int y, unsigned int w, unsigned int h) argument
248 vpx_img_flip(vpx_image_t *img) argument
270 vpx_img_free(vpx_image_t *img) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglimage.h74 _eglInitImage(_EGLImage *img, _EGLDisplay *dpy);
81 _eglGetImage(_EGLImage *img) argument
83 if (img)
84 _eglGetResource(&img->Resource);
85 return img;
93 _eglPutImage(_EGLImage *img) argument
95 return (img) ? _eglPutResource(&img->Resource) : EGL_FALSE;
104 _eglLinkImage(_EGLImage *img) argument
106 _eglLinkResource(&img
116 _eglUnlinkImage(_EGLImage *img) argument
129 _EGLImage *img = (_EGLImage *) image; local
140 _eglGetImageHandle(_EGLImage *img) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dhandle.h79 image_to_handle(struct vg_image *img) argument
82 return object_to_handle((struct vg_object *) img);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dindirect_texture_compression.c44 GLvoid * img)
61 _XRead(dpy, (char *) img, image_bytes);
43 __indirect_glGetCompressedTexImageARB(GLenum target, GLint level, GLvoid * img) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress.c435 * Return the address of the pixel at (col, row, img) in a
437 * \param col, row, img - image position (3D), should be a multiple of the
442 * \return address of pixel at (row, col, img)
445 _mesa_compressed_image_address(GLint col, GLint row, GLint img, argument
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_texture.h98 st_texture_image(struct gl_texture_image *img) argument
100 return (struct st_texture_image *) img;

Completed in 1864 milliseconds

1234567891011>>