Lines Matching refs:extremas
3225 static int compute_quad_extremas(const SkPoint src[3], SkPoint extremas[3]) { in compute_quad_extremas()
3231 extremas[i] = SkEvalQuadAt(src, ts[i]); in compute_quad_extremas()
3233 extremas[n] = src[2]; in compute_quad_extremas()
3237 static int compute_conic_extremas(const SkPoint src[3], SkScalar w, SkPoint extremas[3]) { in compute_conic_extremas()
3244 extremas[i] = conic.evalAt(ts[i]); in compute_conic_extremas()
3246 extremas[n] = src[2]; in compute_conic_extremas()
3250 static int compute_cubic_extremas(const SkPoint src[4], SkPoint extremas[5]) { in compute_cubic_extremas()
3256 SkEvalCubicAt(src, ts[i], &extremas[i], nullptr, nullptr); in compute_cubic_extremas()
3258 extremas[n] = src[3]; in compute_cubic_extremas()
3271 SkPoint extremas[5]; // big enough to hold worst-case curve type (cubic) extremas + 1 in computeTightBounds() local
3280 extremas[0] = pts[0]; in computeTightBounds()
3284 extremas[0] = pts[1]; in computeTightBounds()
3288 count = compute_quad_extremas(pts, extremas); in computeTightBounds()
3291 count = compute_conic_extremas(pts, *w, extremas); in computeTightBounds()
3294 count = compute_cubic_extremas(pts, extremas); in computeTightBounds()
3300 Sk2s tmp = from_point(extremas[i]); in computeTightBounds()