npoints          3347 ext/gd/gd.c    	int npoints, col, nelem, i;
npoints          3355 ext/gd/gd.c    	npoints = NPOINTS;
npoints          3363 ext/gd/gd.c    	if (npoints <= 0) {
npoints          3367 ext/gd/gd.c    	if (nelem < npoints * 2) {
npoints          3368 ext/gd/gd.c    		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Trying to use %d points in array with only %d points", npoints, nelem/2);
npoints          3372 ext/gd/gd.c    	points = (gdPointPtr) safe_emalloc(npoints, sizeof(gdPoint), 0);
npoints          3374 ext/gd/gd.c    	for (i = 0; i < npoints; i++) {
npoints          3400 ext/gd/gd.c    		gdImageFilledPolygon(im, points, npoints, col);
npoints          3402 ext/gd/gd.c    		gdImagePolygon(im, points, npoints, col);