polyInts          141 ext/gd/libgd/gd.c 	im->polyInts = 0;
polyInts          197 ext/gd/libgd/gd.c 	im->polyInts = 0;
polyInts          252 ext/gd/libgd/gd.c 	if (im->polyInts) {
polyInts          253 ext/gd/libgd/gd.c 		gdFree(im->polyInts);
polyInts         2642 ext/gd/libgd/gd.c 		im->polyInts = (int *) gdMalloc(sizeof(int) * n);
polyInts         2652 ext/gd/libgd/gd.c 		im->polyInts = (int *) gdRealloc(im->polyInts, sizeof(int) * im->polyAllocated);
polyInts         2705 ext/gd/libgd/gd.c 				im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1;
polyInts         2707 ext/gd/libgd/gd.c 				im->polyInts[ints++] = x2;
polyInts         2710 ext/gd/libgd/gd.c 		qsort(im->polyInts, ints, sizeof(int), gdCompareInt);
polyInts         2713 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;