Lines Matching refs:width
13 static gdPoint gdArcClosest (int width, int height, int angle);
16 gdImageFilledEllipse (gdImagePtr im, int cx, int cy, int width, int height, int color)
18 gdImageFilledArc (im, cx, cy, width, height, 0, 360, color, gdChord);
22 gdImageFilledArc (gdImagePtr im, int cx, int cy, int width, int height, int s, int e, int color, in…
66 width = (width & 1) ? (width + 1) : (width);
69 a = width / 2;
110 gdImageFilledArc (im, cx, cy, width, height, s, (i + 1) * 90, color, gdChord);
111 pt[0] = gdArcClosest (width, height, s);
118 gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, e, color, gdChord);
119 pt[2] = gdArcClosest (width, height, e);
137 gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, (i + 2) * 90, color, gdChord);
142 gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, e, color, gdChord);
143 pt[3] = gdArcClosest (width, height, e);
161 gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, (i + 3) * 90, color, gdChord);
166 gdImageFilledArc (im, cx, cy, width, height, (i + 3) * 90, e, color, gdChord);
167 pt[4] = gdArcClosest (width, height, e);
185 gdImageFilledArc (im, cx, cy, width, height, (i + 3) * 90, (i + 4) * 90, color, gdChord);
189 gdImageFilledArc (im, cx, cy, width, height, (i + 4) * 90, e, color, gdChord);
190 pt[5] = gdArcClosest (width, height, e);
259 w = (long) width;
534 gdArcClosest (int width, int height, int angle)
557 w = (long) ((width & 1) ? (width + 1) : (width));