Searched refs:yoff (Results 1 – 4 of 4) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/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/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()
|