Home | History | Annotate | Download | only in gpu

Lines Matching refs:pointsLeft

75                                               uint32_t pointsLeft) {
76 if (pointsLeft < 2 ||
89 pointsLeft >>= 1;
90 uint32_t a = generateQuadraticPoints(p0, q[0], r, tolSqd, points, pointsLeft);
91 uint32_t b = generateQuadraticPoints(r, q[1], p2, tolSqd, points, pointsLeft);
132 uint32_t pointsLeft) {
133 if (pointsLeft < 2 ||
150 pointsLeft >>= 1;
151 uint32_t a = generateCubicPoints(p0, q[0], r[0], s, tolSqd, points, pointsLeft);
152 uint32_t b = generateCubicPoints(s, r[1], q[2], p3, tolSqd, points, pointsLeft);