Lines Matching refs:start
20 static double calc_t_div(const SkDCubic& cubic, double precision, double start) {
24 if (start == 0) {
28 sub = cubic.subDivide(start, 1);
37 if (start > 0) {
38 t = start + (1 - start) * t;
55 static void addTs(const SkDCubic& cubic, double precision, double start, double end,
60 double newT = start + (index / parts) * (end - start);
86 int start = 0;
89 if (!approximately_equal(inflectT[start], inflectT[next])) {
90 ++start;
94 memmove(&inflectT[start], &inflectT[next], sizeof(inflectT[0]) * (--inflections - start));