Lines Matching refs:cx
1463 int cx, cy;
1468 cx = 0;
1479 if (f->data[fline + cy * f->w + cx]) {
1482 cx++;
1484 cx = 0;
1491 int cx, cy;
1496 cx = 0;
1507 if (f->data[fline + cy * f->w + cx]) {
1513 cx++;
1586 cx and cy are the center in pixels; w and h are the horizontal
1589 void gdImageArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color)
1591 gdImageFilledArc(im, cx, cy, w, h, s, e, color, gdNoFill);
1594 void gdImageFilledArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style)
1627 x = endx = ((long) gdCosT[i % 360] * (long) w / (2 * 1024)) + cx;
1651 pts[0].x = cx;
1663 gdImageLine(im, cx, cy, lx, ly, color);
1664 gdImageLine(im, cx, cy, fx, fy, color);
1672 pts[2].x = cx;
1679 gdImageLine(im, cx, cy, lx, ly, color);
1680 gdImageLine(im, cx, cy, fx, fy, color);
1701 pts[pti].x = cx;
2109 int cx, cy, x1ul, y1ul, x2lr, y2lr;
2120 cx = x1ul - 1;
2121 while (cx++ < x2lr) {
2122 gdImageSetPixel(im, cx, cy, color);
2128 cx = x1ul - 1;
2129 while (cx++ < x2lr) {
2130 gdImageSetPixel(im, cx, cy, color);
2136 cx = x1ul - 1;
2137 while (cx++ < x1ul + thick) {
2138 gdImageSetPixel(im, cx, cy, color);
2144 cx = x2lr - thick - 1;
2145 while (cx++ < x2lr) {
2146 gdImageSetPixel(im, cx, cy, color);