Lines Matching refs:roots
18 int roots = 0; in setBounds() local
20 roots = SkDQuad::FindExtrema(&sub[0].fX, tValues); in setBounds()
23 roots += SkDQuad::FindExtrema(&sub[0].fY, &tValues[roots]); in setBounds()
25 for (int index = 0; index < roots; ++index) { in setBounds()
35 int roots = 0; in setBounds() local
37 roots = SkDConic::FindExtrema(&sub[0].fX, sub.fWeight, tValues); in setBounds()
40 roots += SkDConic::FindExtrema(&sub[0].fY, sub.fWeight, &tValues[roots]); in setBounds()
42 for (int index = 0; index < roots; ++index) { in setBounds()
52 int roots = 0; in setBounds() local
54 roots = SkDCubic::FindExtrema(&sub[0].fX, tValues); in setBounds()
57 roots += SkDCubic::FindExtrema(&sub[0].fY, &tValues[roots]); in setBounds()
59 for (int index = 0; index < roots; ++index) { in setBounds()