Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.15/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/skia/src/core/
DSkAAClip.cpp101 YOffset* yoff = head->yoffsets(); in AllocRect() local
102 yoff->fY = bounds.height() - 1; in AllocRect()
103 yoff->fOffset = 0; in AllocRect()
200 const YOffset* yoff = head->yoffsets(); in validate() local
201 const YOffset* ystop = yoff + head->fRowCount; in validate()
207 while (yoff < ystop) { in validate()
208 SkASSERT(prevY < yoff->fY); in validate()
209 SkASSERT(yoff->fY <= lastY); in validate()
210 prevY = yoff->fY; in validate()
211 SkASSERT(prevOffset < (int32_t)yoff->fOffset); in validate()
[all …]
/external/chromium_org/third_party/skia/src/core/
DSkAAClip.cpp101 YOffset* yoff = head->yoffsets(); in AllocRect() local
102 yoff->fY = bounds.height() - 1; in AllocRect()
103 yoff->fOffset = 0; in AllocRect()
200 const YOffset* yoff = head->yoffsets(); in validate() local
201 const YOffset* ystop = yoff + head->fRowCount; in validate()
207 while (yoff < ystop) { in validate()
208 SkASSERT(prevY < yoff->fY); in validate()
209 SkASSERT(yoff->fY <= lastY); in validate()
210 prevY = yoff->fY; in validate()
211 SkASSERT(prevOffset < (int32_t)yoff->fOffset); in validate()
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowPopupWindow.java152 public void showAsDropDown(View anchor, int xoff, int yoff) { in showAsDropDown() argument
154 yOffset = yoff; in showAsDropDown()
/external/chromium_org/third_party/sqlite/src/ext/rtree/
Dviewrtree.tcl140 set yoff [expr {10.0 - $ymin*$yscale}]
147 set y1 [expr {$y1*$yscale + $yoff}]
148 set y2 [expr {$y2*$yscale + $yoff}]
/external/libvpx/libvpx/test/
Dvariance_test.cc55 int l2w, int l2h, int xoff, int yoff, in subpel_variance_ref() argument
69 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_variance_ref()
169 int xoff, int yoff, in subpel_avg_variance_ref() argument
183 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_avg_variance_ref()
/external/chromium_org/third_party/libvpx/source/libvpx/test/
Dvariance_test.cc55 int l2w, int l2h, int xoff, int yoff, in subpel_variance_ref() argument
69 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_variance_ref()
169 int xoff, int yoff, in subpel_avg_variance_ref() argument
183 const int r = a + (((b - a) * yoff + 8) >> 4); in subpel_avg_variance_ref()
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
DSDL_ps3video.c231 deprintf(1, "[PS3] xres:%d yres:%d xoff:%d yoff:%d\n", res.xres, res.yres, res.xoff, res.yoff); in PS3_VideoInit()