Searched refs:xoffset (Results 1 - 15 of 15) sorted by relevance

/external/opencore/codecs_v2/video/m4v_h263/dec/src/
H A Dget_pred_outside.cpp258 int xoffset; local
361 xoffset = xpos >> 1;
362 xoffset = xoffset & 0x3; /* word align ptr */
366 prev = c_prev + (xpos >> 1) - xoffset;
368 if (xoffset || (xpos&1)) /* copy extra 4x8 */
381 if (xoffset || (xpos&1)) /* pad extra 4x8 */
387 ptr = pred + (((ypos >> 1) + 8) << 4) + xoffset;
395 xoffset = xpos >> 1;
396 xoffset
[all...]
/external/webkit/WebCore/html/canvas/
H A DWebGLRenderingContext.h92 //void compressedTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, unsigned long width, unsigned long height, unsigned long format, unsigned long imageSize, const void* data);
95 void copyTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, long x, long y, unsigned long width, unsigned long height);
214 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
217 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
219 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
221 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
223 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
H A DWebGLRenderingContext.cpp429 void WebGLRenderingContext::copyTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, long x, long y, unsigned long width, unsigned long height) argument
431 m_context->copyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
1712 void WebGLRenderingContext::texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, argument
1719 m_context->texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels ? pixels->baseAddress() : 0);
1723 void WebGLRenderingContext::texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, argument
1730 m_context->texSubImage2D(target, level, xoffset, yoffset, pixels->width(), pixels->height(), GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, pixels->data()->data()->data());
1731 //RLP: m_context->texSubImage2D(target, level, xoffset, yoffset, pixels, flipY, premultiplyAlpha);
1735 void WebGLRenderingContext::texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, argument
1751 m_context->texSubImage2D(target, level, xoffset, yoffset, cachedImage->image(), flipY, premultiplyAlpha);
1755 void WebGLRenderingContext::texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigne argument
1775 texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, HTMLVideoElement* video, bool flipY, bool premultiplyAlpha, ExceptionCode& ec) argument
[all...]
H A DWebGLRenderingContext.idl492 //void compressedTexSubImage2D(in unsigned long target, in long level, in long xoffset, in long yoffset, in unsigned long width, in unsigned long height, in unsigned long format, in unsigned long imageSize, const void* data);
495 void copyTexSubImage2D(in unsigned long target, in long level, in long xoffset, in long yoffset, in long x, in long y, in unsigned long width, in unsigned long height);
625 // void texSubImage2D(in GLenum target, in GLint level, in GLint xoffset, in GLint yoffset,
628 // void texSubImage2D(in GLenum target, in GLint level, in GLint xoffset, in GLint yoffset,
630 // void texSubImage2D(in GLenum target, in GLint level, in GLint xoffset, in GLint yoffset,
632 // void texSubImage2D(in GLenum target, in GLint level, in GLint xoffset, in GLint yoffset,
634 // void texSubImage2D(in GLenum target, in GLint level, in GLint xoffset, in GLint yoffset,
/external/kernel-headers/original/linux/
H A Dmsm_q6vdec.h128 int xoffset[4]; member in struct:vdec_vc1_panscan_regions
H A Dfb.h221 __u32 xoffset; /* offset from virtual to visible */ member in struct:fb_var_screeninfo
/external/webkit/WebCore/platform/graphics/
H A DGraphicsContext3D.h448 //void compressedTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, unsigned long width, unsigned long height, unsigned long format, unsigned long imageSize, const void* data);
451 void copyTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, long x, long y, unsigned long width, unsigned long height);
554 int texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, unsigned width, unsigned height, unsigned format, unsigned type, void* pixels);
555 int texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, Image* image, bool flipY, bool premultiplyAlpha);
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
H A Dmotion_comp.cpp1527 Int xoffset; local
1598 xoffset = (xpos >> 1) & 0x3;
1599 src = c_prev + (xpos >> 1) - xoffset;
1602 if (xoffset || (xpos&1))
1623 xoffset = (xpos >> 1) & 0x3;
1624 src = c_prev + (xpos >> 1) - xoffset + (height - 1) * lx;
1627 if (xoffset || (xpos&1))
/external/webkit/WebCore/rendering/
H A DRenderBlock.h298 void addIntrudingFloats(RenderBlock* prev, int xoffset, int yoffset);
299 int addOverhangingFloats(RenderBlock* child, int xoffset, int yoffset, bool makeChildPaintOtherFloats);
H A DRenderBlock.cpp3025 int xoffset = 0; local
3030 xoffset += toRenderBox(prev)->borderLeft() + toRenderBox(prev)->paddingLeft();
3039 addIntrudingFloats(block, xoffset, offset);
3333 int xoffset = scrolledX + o->m_left + o->m_renderer->marginLeft() - o->m_renderer->x(); local
3335 if (o->m_renderer->hitTest(request, result, IntPoint(_x, _y), xoffset, yoffset)) {
3336 updateHitTestResult(result, IntPoint(_x - xoffset, _y - yoffset));
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_glfuncs.h61 SDL_PROC_UNUSED(void,glCopyTexSubImage1D,(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width))
62 SDL_PROC_UNUSED(void,glCopyTexSubImage2D,(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height))
312 SDL_PROC_UNUSED(void,glTexSubImage1D,(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels))
313 SDL_PROC(void,glTexSubImage2D,(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels))
/external/webkit/WebKit/chromium/src/
H A DGraphicsContext3D.cpp2061 unsigned xoffset,
2069 glTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
2075 unsigned xoffset,
2059 texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, unsigned width, unsigned height, unsigned format, unsigned type, void* pixels) argument
2073 texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, Image* image, bool flipY, bool premultiplyAlpha) argument
/external/webkit/WebCore/platform/graphics/mac/
H A DGraphicsContext3DMac.cpp390 void GraphicsContext3D::copyTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, long x, long y, unsigned long width, unsigned long height) argument
393 ::glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_opengl.h3210 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
3211 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
3306 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
3307 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
3308 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
3762 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
3763 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
3764 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
4254 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
4273 typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsize
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbvideo.c757 fprintf(stderr, "\txoffset: %d\n", vinfo->xoffset);
963 vinfo.xoffset = 0;

Completed in 194 milliseconds