Lines Matching refs:pti
1597 int i, pti; in gdImageFilledArc() local
1625 for (i = s, pti = 1; i <= e; i++, pti++) { in gdImageFilledArc()
1635 pti--; /* don't add this point */ in gdImageFilledArc()
1639 pts[pti].x = x; in gdImageFilledArc()
1642 pts[pti].x = x; in gdImageFilledArc()
1643 pts[pti].y = y; in gdImageFilledArc()
1653 pts[pti].x = startx = x; in gdImageFilledArc()
1654 pts[pti].y = starty = y; in gdImageFilledArc()
1686 for (i = pti; i > 1; i--) { in gdImageFilledArc()
1692 pti++; in gdImageFilledArc()
1694 if (pts[pti-1].x != endx && pts[pti-1].y == endy) { in gdImageFilledArc()
1696 pts[pti].x = endx; in gdImageFilledArc()
1697 pts[pti].y = endy; in gdImageFilledArc()
1698 pti++; in gdImageFilledArc()
1701 pts[pti].x = cx; in gdImageFilledArc()
1702 pts[pti].y = cy; in gdImageFilledArc()
1703 gdImageFilledPolygon(im, pts, pti+1, color); in gdImageFilledArc()