Lines Matching refs:newx
373 SkFixed newx, newy, newSnappedX, newSnappedY; in updateQuadratic() local
382 newx = oldx + (dx >> shift); in updateQuadratic()
386 slope = diffY ? quick_div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic()
389 newSnappedX = newx - SkFixedMul(slope, newy - newSnappedY); in updateQuadratic()
392 newSnappedX = newx; in updateQuadratic()
394 slope = diffY ? quick_div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic()
402 newx = fQEdge.fQLastX; in updateQuadratic()
405 newSnappedX = newx; in updateQuadratic()
407 slope = diffY ? quick_div((newx - fSnappedX) >> 10, diffY) : SK_MaxS32; in updateQuadratic()
412 oldx = newx; in updateQuadratic()
418 fQEdge.fQx = newx; in updateQuadratic()
464 SkFixed newx, newy; in updateCubic() local
472 newx = oldx + (fCEdge.fCDx >> dshift); in updateCubic()
481 newx = fCEdge.fCLastX; in updateCubic()
501 : SkFDot6Div(SkFixedToFDot6(newx - oldx), in updateCubic()
504 success = this->updateLine(oldx, fSnappedY, newx, newSnappedY, slope); in updateCubic()
506 oldx = newx; in updateCubic()
511 fCEdge.fCx = newx; in updateCubic()