Home
last modified time | relevance | path

Searched refs:yoff (Results 1 – 3 of 3) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
DSDL_BView.h40 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/
DDiffMyers.java109 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/WebCore/rendering/
DRenderBlock.cpp2963 int RenderBlock::addOverhangingFloats(RenderBlock* child, int xoff, int yoff, bool makeChildPaintOt… in addOverhangingFloats() argument
2983 floatingObj->m_top = r->m_top - yoff; in addOverhangingFloats()
2984 floatingObj->m_bottom = r->m_bottom - yoff; in addOverhangingFloats()
3023 void RenderBlock::addIntrudingFloats(RenderBlock* prev, int xoff, int yoff) in addIntrudingFloats() argument
3031 if (r->m_bottom > yoff) { in addIntrudingFloats()
3044 floatingObj->m_top = r->m_top - yoff; in addIntrudingFloats()
3045 floatingObj->m_bottom = r->m_bottom - yoff; in addIntrudingFloats()