polyInts          139 ext/gd/libgd/gd.c 	im->polyInts = 0;
polyInts          195 ext/gd/libgd/gd.c 	im->polyInts = 0;
polyInts          250 ext/gd/libgd/gd.c 	if (im->polyInts) {
polyInts          251 ext/gd/libgd/gd.c 		gdFree(im->polyInts);
polyInts         2640 ext/gd/libgd/gd.c 		im->polyInts = (int *) gdMalloc(sizeof(int) * n);
polyInts         2650 ext/gd/libgd/gd.c 		im->polyInts = (int *) gdRealloc(im->polyInts, sizeof(int) * im->polyAllocated);
polyInts         2703 ext/gd/libgd/gd.c 				im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1;
polyInts         2705 ext/gd/libgd/gd.c 				im->polyInts[ints++] = x2;
polyInts         2708 ext/gd/libgd/gd.c 		qsort(im->polyInts, ints, sizeof(int), gdCompareInt);
polyInts         2711 ext/gd/libgd/gd.c 			gdImageLine(im, im->polyInts[i], y, im->polyInts[i + 1], y, fill_color);
polyInts          193 ext/gd/libgd/gd.h 	int *polyInts;