Home
last modified time | relevance | path

Searched refs:newx (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/core/
DSkAnalyticEdge.cpp371 SkFixed newx, newy, newSnappedX, newSnappedY; in updateQuadratic() local
380 newx = oldx + (dx >> shift); in updateQuadratic()
384 slope = diffY ? quick_div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic()
387 newSnappedX = newx - SkFixedMul(slope, newy - newSnappedY); in updateQuadratic()
390 newSnappedX = newx; in updateQuadratic()
392 slope = diffY ? quick_div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic()
400 newx = fQEdge.fQLastX; in updateQuadratic()
403 newSnappedX = newx; in updateQuadratic()
405 slope = diffY ? quick_div((newx - fSnappedX) >> 10, diffY) : SK_MaxS32; in updateQuadratic()
410 oldx = newx; in updateQuadratic()
[all …]
DSkEdge.cpp296 SkFixed newx, newy; in updateQuadratic() local
304 newx = oldx + (dx >> shift); in updateQuadratic()
311 newx = fQLastX; in updateQuadratic()
314 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic()
315 oldx = newx; in updateQuadratic()
319 fQx = newx; in updateQuadratic()
464 SkFixed newx, newy; in updateCubic() local
473 newx = oldx + (fCDx >> dshift); in updateCubic()
484 newx = fCLastX; in updateCubic()
494 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic()
[all …]
/external/skqp/src/core/
DSkAnalyticEdge.cpp371 SkFixed newx, newy, newSnappedX, newSnappedY; in updateQuadratic() local
380 newx = oldx + (dx >> shift); in updateQuadratic()
384 slope = diffY ? quick_div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic()
387 newSnappedX = newx - SkFixedMul(slope, newy - newSnappedY); in updateQuadratic()
390 newSnappedX = newx; in updateQuadratic()
392 slope = diffY ? quick_div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic()
400 newx = fQEdge.fQLastX; in updateQuadratic()
403 newSnappedX = newx; in updateQuadratic()
405 slope = diffY ? quick_div((newx - fSnappedX) >> 10, diffY) : SK_MaxS32; in updateQuadratic()
410 oldx = newx; in updateQuadratic()
[all …]
DSkEdge.cpp296 SkFixed newx, newy; in updateQuadratic() local
304 newx = oldx + (dx >> shift); in updateQuadratic()
311 newx = fQLastX; in updateQuadratic()
314 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic()
315 oldx = newx; in updateQuadratic()
319 fQx = newx; in updateQuadratic()
464 SkFixed newx, newy; in updateCubic() local
473 newx = oldx + (fCDx >> dshift); in updateCubic()
484 newx = fCLastX; in updateCubic()
494 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic()
[all …]
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DUtils.java100 double[] newx = new double[newLen]; in extract() local
105 newx[j] = arr[i]; in extract()
109 return newx; in extract()
/external/python/cpython2/Modules/
Dimageop.c179 int len, size, x, y, newx, newy, nlen; in imageop_scale() local
185 &cp, &len, &size, &x, &y, &newx, &newy) ) in imageop_scale()
194 nlen = newx*newy*size; in imageop_scale()
195 if ( !check_multiply_size(nlen, newx, "newx", newy, "newy", size) ) in imageop_scale()
205 for ( ix = 0; ix < newx; ix++ ) { in imageop_scale()
206 oix = ix * x / newx; in imageop_scale()
/external/ImageMagick/PerlMagick/demo/
DTurtle.pm19 my ($newx, $newy)=($self->{x}+$r* sin($self->{theta}),