npoints          3335 ext/gd/gd.c    	int npoints, col, nelem, i;
npoints          3345 ext/gd/gd.c    	npoints = NPOINTS;
npoints          3353 ext/gd/gd.c    	if (npoints <= 0) {
npoints          3357 ext/gd/gd.c    	if (nelem < npoints * 2) {
npoints          3358 ext/gd/gd.c    		php_error_docref(NULL, E_WARNING, "Trying to use %d points in array with only %d points", npoints, nelem/2);
npoints          3362 ext/gd/gd.c    	points = (gdPointPtr) safe_emalloc(npoints, sizeof(gdPoint), 0);
npoints          3364 ext/gd/gd.c    	for (i = 0; i < npoints; i++) {
npoints          3374 ext/gd/gd.c    		gdImageFilledPolygon(im, points, npoints, col);
npoints          3376 ext/gd/gd.c    		gdImagePolygon(im, points, npoints, col);