Searched refs:newx (Results 1 – 5 of 5) sorted by relevance
/external/skia/src/core/ |
D | SkAnalyticEdge.cpp | 85 SkFixed newx, newy, newSnappedX, newSnappedY; in updateQuadratic() local 94 newx = oldx + (dx >> shift); in updateQuadratic() 98 slope = diffY ? QuickSkFDot6Div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic() 101 newSnappedX = newx - SkFixedMul(slope, newy - newSnappedY); in updateQuadratic() 104 newSnappedX = newx; in updateQuadratic() 106 slope = diffY ? QuickSkFDot6Div(SkFixedToFDot6(newx - fSnappedX), diffY) in updateQuadratic() 114 newx = fQEdge.fQLastX; in updateQuadratic() 117 newSnappedX = newx; in updateQuadratic() 119 slope = diffY ? QuickSkFDot6Div((newx - fSnappedX) >> 10, diffY) : SK_MaxS32; in updateQuadratic() 124 oldx = newx; in updateQuadratic() [all …]
|
D | SkEdge.cpp | 295 SkFixed newx, newy; in updateQuadratic() local 303 newx = oldx + (dx >> shift); in updateQuadratic() 310 newx = fQLastX; in updateQuadratic() 313 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic() 314 oldx = newx; in updateQuadratic() 318 fQx = newx; in updateQuadratic() 462 SkFixed newx, newy; in updateCubic() local 471 newx = oldx + (fCDx >> dshift); in updateCubic() 482 newx = fCLastX; in updateCubic() 492 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic() [all …]
|
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/ |
D | Utils.java | 100 double[] newx = new double[newLen]; in extract() local 105 newx[j] = arr[i]; in extract() 109 return newx; in extract()
|
/external/python/cpython2/Modules/ |
D | imageop.c | 179 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/ |
D | Turtle.pm | 19 my ($newx, $newy)=($self->{x}+$r* sin($self->{theta}),
|