Searched refs:yoff (Results 1 – 6 of 6) sorted by relevance
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
D | SDL_BView.h | 40 xoff = yoff = 0; in SDL_BView() 50 yoff = y; in SetXYOffset() 54 y = yoff; in GetXYOffset() 58 y = (float)yoff; in GetXYOffset() 86 if(xoff || yoff) { in Draw() 88 dest.top = updateRect.top + yoff; in Draw() 90 dest.bottom = updateRect.bottom + yoff; in Draw() 99 if(xoff || yoff) { in DrawAsync() 101 dest.top = updateRect.top + yoff; in DrawAsync() 103 dest.bottom = updateRect.bottom + yoff; in DrawAsync() [all …]
|
/external/jdiff/src/jdiff/ |
D | DiffMyers.java | 109 private int diag (int xoff, int xlim, int yoff, int ylim) in diag() argument 116 final int dmax = xlim - yoff; // Maximum valid diagonal. in diag() 117 final int fmid = xoff - yoff; // Center diagonal of top-down search. in diag() 184 while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) { in diag() 217 && fd[fdiagoff + d] - d - yoff > 20) in diag() 288 private void compareseq (int xoff, int xlim, int yoff, int ylim) { in compareseq() argument 290 while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) { in compareseq() 291 ++xoff; ++yoff; in compareseq() 294 while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1]) { in compareseq() 300 while (yoff < ylim) in compareseq() [all …]
|
/external/skia/src/core/ |
D | SkAAClip.cpp | 99 YOffset* yoff = head->yoffsets(); in AllocRect() local 100 yoff->fY = bounds.height() - 1; in AllocRect() 101 yoff->fOffset = 0; in AllocRect() 197 const YOffset* yoff = head->yoffsets(); in validate() local 198 const YOffset* ystop = yoff + head->fRowCount; in validate() 204 while (yoff < ystop) { in validate() 205 SkASSERT(prevY < yoff->fY); in validate() 206 SkASSERT(yoff->fY <= lastY); in validate() 207 prevY = yoff->fY; in validate() 208 SkASSERT(prevOffset < (int32_t)yoff->fOffset); in validate() [all …]
|
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/ |
D | SDL_ps3video.c | 231 deprintf(1, "[PS3] xres:%d yres:%d xoff:%d yoff:%d\n", res.xres, res.yres, res.xoff, res.yoff); in PS3_VideoInit()
|
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
D | GraphicsContext3DOpenGL.cpp | 1410 void GraphicsContext3D::texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoff, GC3Dint yoff, G… in texSubImage2D() argument 1415 ::glTexSubImage2D(target, level, xoff, yoff, width, height, format, type, pixels); in texSubImage2D()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | GraphicsContext3DQt.cpp | 1618 void GraphicsContext3D::texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoff, GC3Dint yoff, G… in texSubImage2D() argument 1621 glTexSubImage2D(target, level, xoff, yoff, width, height, format, type, pixels); in texSubImage2D()
|