Home
last modified time | relevance | path

Searched refs:lastY (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/third_party/freetype/src/raster/
Dftraster.c493 Long lastX, lastY; member
1370 if ( y > ras.lastY ) in Line_To()
1373 IS_BOTTOM_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1378 if ( y < ras.lastY ) in Line_To()
1380 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1386 if ( y < ras.lastY ) in Line_To()
1388 if ( End_Profile( RAS_VARS IS_TOP_OVERSHOOT( ras.lastY ) ) || in Line_To()
1390 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1396 if ( y > ras.lastY ) in Line_To()
1398 if ( End_Profile( RAS_VARS IS_BOTTOM_OVERSHOOT( ras.lastY ) ) || in Line_To()
[all …]
/external/freetype/src/raster/
Dftraster.c501 Long lastX, lastY; member
1378 if ( y > ras.lastY ) in Line_To()
1381 IS_BOTTOM_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1386 if ( y < ras.lastY ) in Line_To()
1388 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1394 if ( y < ras.lastY ) in Line_To()
1396 if ( End_Profile( RAS_VARS IS_TOP_OVERSHOOT( ras.lastY ) ) || in Line_To()
1398 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1404 if ( y > ras.lastY ) in Line_To()
1406 if ( End_Profile( RAS_VARS IS_BOTTOM_OVERSHOOT( ras.lastY ) ) || in Line_To()
[all …]
/external/skia/src/core/
DSkAAClip.cpp202 const int lastY = fBounds.height() - 1; in validate() local
209 SkASSERT(yoff->fY <= lastY); in validate()
220 SkASSERT(yoff->fY == lastY); in validate()
606 const YOffset& lastY = yoff[head->fRowCount - 1]; in trimBounds() local
607 SkASSERT(lastY.fY + 1 <= fBounds.height()); in trimBounds()
608 fBounds.fBottom = fBounds.fTop + lastY.fY + 1; in trimBounds()
609 SkASSERT(lastY.fY + 1 == fBounds.height()); in trimBounds()
920 int lastY SK_INIT_TO_AVOID_WARNING; in quickContains()
921 const uint8_t* row = this->findRow(top, &lastY); in quickContains()
922 if (lastY < bottom) { in quickContains()
[all …]
/external/v8/benchmarks/
Dnavier-stokes.js185 var lastY = y[currentRow];
189lastY = y[currentRow] = (y0[currentRow] + a * (lastY + y[++currentRow] + y[++lastRow] + y[++nextRo…
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DConsoleActivity.java116 private float lastX, lastY; field in ConsoleActivity
516 lastY = event.getY(); in onCreate()
519 final int deltaY = (int) (lastY - event.getY()); in onCreate()
535 && Math.abs(event.getY() - lastY) < MAX_CLICK_DISTANCE) { in onCreate()