color              66 Zend/zend_gc.c # define GC_TRACE_SET_COLOR(ref, color) \
color              67 Zend/zend_gc.c 	GC_TRACE_REF(ref, "->%s", gc_color_name(color))
color              86 Zend/zend_gc.c static const char *gc_color_name(uint32_t color) {
color              87 Zend/zend_gc.c 	switch (color) {
color             187 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color             461 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color             539 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color             790 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color            1620 ext/gd/gd.c    	zend_long cx, cy, w, h, color;
color            1623 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
color            1631 ext/gd/gd.c    	gdImageFilledEllipse(im, cx, cy, w, h, color);
color            2014 ext/gd/gd.c    	zend_long color;
color            2017 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rdl|l", &SIM, &degrees, &color, &ignoretransparent) == FAILURE) {
color            2025 ext/gd/gd.c    	im_dst = gdImageRotateInterpolated(im_src, (const float)degrees, color);
color            2945 ext/gd/gd.c    	zend_long color, red, green, blue, alpha = 0;
color            2949 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll|l", &IM, &color, &red, &green, &blue, &alpha) == FAILURE) {
color            2957 ext/gd/gd.c    	col = color;
color            3197 ext/gd/gd.c    	zend_long cx, cy, w, h, color;
color            3200 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
color            3208 ext/gd/gd.c    	gdImageEllipse(im, cx, cy, w, h, color);
color            3477 ext/gd/gd.c    static void php_gdimagecharup(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
color            3491 ext/gd/gd.c    				gdImageSetPixel(im, px, py, color);
color            3943 ext/gd/gd.c    	int color, color_org, median;
color            3975 ext/gd/gd.c    				color = black;
color            3977 ext/gd/gd.c    				color = white;
color            3979 ext/gd/gd.c    			gdImageSetPixel (im_dest, x, y, color);
color            4002 ext/gd/gd.c    	int color, color_org, median;
color            4146 ext/gd/gd.c    				color = black;
color            4148 ext/gd/gd.c    				color = white;
color            4150 ext/gd/gd.c    			gdImageSetPixel (im_dest, x, y, color);
color            4595 ext/gd/gd.c    	zend_long color = -1;
color            4600 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|ldl", &IM, &mode, &threshold, &color) == FAILURE)  {
color            4620 ext/gd/gd.c    			if (color < 0) {
color            4624 ext/gd/gd.c    			im_crop = gdImageCropThreshold(im, color, (float) threshold);
color             585 ext/gd/libgd/gd.c void gdImageColorDeallocate (gdImagePtr im, int color)
color             591 ext/gd/libgd/gd.c 	im->open[color] = 1;
color             594 ext/gd/libgd/gd.c void gdImageColorTransparent (gdImagePtr im, int color)
color             600 ext/gd/libgd/gd.c 		if (color > -1 && color < im->colorsTotal && color < gdMaxColors) {
color             601 ext/gd/libgd/gd.c 			im->alpha[color] = gdAlphaTransparent;
color             606 ext/gd/libgd/gd.c 	im->transparent = color;
color             718 ext/gd/libgd/gd.c void gdImageSetPixel (gdImagePtr im, int x, int y, int color)
color             721 ext/gd/libgd/gd.c 	switch (color) {
color             760 ext/gd/libgd/gd.c 							im->tpixels[y][x] = color;
color             763 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
color             766 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
color             769 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdLayerOverlay(im->tpixels[y][x], color);
color             773 ext/gd/libgd/gd.c 					im->pixels[y][x] = color;
color            1011 ext/gd/libgd/gd.c 	int color = im->AA_color, color_red, color_green, color_blue;
color            1016 ext/gd/libgd/gd.c 	color_red = gdImageRed(im, color);
color            1017 ext/gd/libgd/gd.c 	color_green = gdImageGreen(im, color);
color            1018 ext/gd/libgd/gd.c 	color_blue = gdImageBlue(im, color);
color            1026 ext/gd/libgd/gd.c 				if ((old_color != color) && ((old_color != im->AA_dont_blend) || (im->AA_opacity[py][px] == 255))) {
color            1032 ext/gd/libgd/gd.c 						p_color = color;
color            1091 ext/gd/libgd/gd.c void gdImageLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            1098 ext/gd/libgd/gd.c 	if (color == gdAntiAliased) {
color            1117 ext/gd/libgd/gd.c 		gdImageVLine(im, x1, y1, y2, color);
color            1120 ext/gd/libgd/gd.c 		gdImageHLine(im, y1, x1, x2, color);
color            1160 ext/gd/libgd/gd.c 			gdImageSetPixel(im, x, w, color);
color            1174 ext/gd/libgd/gd.c 					gdImageSetPixel (im, x, w, color);
color            1188 ext/gd/libgd/gd.c 					gdImageSetPixel (im, x, w, color);
color            1224 ext/gd/libgd/gd.c 			gdImageSetPixel (im, w, y, color);
color            1238 ext/gd/libgd/gd.c 					gdImageSetPixel (im, w, y, color);
color            1252 ext/gd/libgd/gd.c 					gdImageSetPixel (im, w, y, color);
color            1266 ext/gd/libgd/gd.c inline static void gdImageSetAAPixelColor(gdImagePtr im, int x, int y, int color, int t)
color            1269 ext/gd/libgd/gd.c 	dr = gdTrueColorGetRed(color);
color            1270 ext/gd/libgd/gd.c 	dg = gdTrueColorGetGreen(color);
color            1271 ext/gd/libgd/gd.c 	db = gdTrueColorGetBlue(color);
color            1396 ext/gd/libgd/gd.c static void dashedSet (gdImagePtr im, int x, int y, int color, int *onP, int *dashStepP, int wid, int vert);
color            1398 ext/gd/libgd/gd.c void gdImageDashedLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            1436 ext/gd/libgd/gd.c 		dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1446 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1457 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1485 ext/gd/libgd/gd.c 		dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1495 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1506 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1512 ext/gd/libgd/gd.c static void dashedSet (gdImagePtr im, int x, int y, int color, int *onP, int *dashStepP, int wid, int vert)
color            1527 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, w, color);
color            1532 ext/gd/libgd/gd.c 				gdImageSetPixel(im, w, y, color);
color            1540 ext/gd/libgd/gd.c void gdImageChar (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
color            1557 ext/gd/libgd/gd.c 				gdImageSetPixel(im, px, py, color);
color            1566 ext/gd/libgd/gd.c void gdImageCharUp (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
color            1583 ext/gd/libgd/gd.c 				gdImageSetPixel(im, px, py, color);
color            1592 ext/gd/libgd/gd.c void gdImageString (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color)
color            1598 ext/gd/libgd/gd.c 		gdImageChar(im, f, x, y, s[i], color);
color            1603 ext/gd/libgd/gd.c void gdImageStringUp (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color)
color            1609 ext/gd/libgd/gd.c 		gdImageCharUp(im, f, x, y, s[i], color);
color            1616 ext/gd/libgd/gd.c void gdImageString16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color)
color            1622 ext/gd/libgd/gd.c 		gdImageChar(im, f, x, y, s[i], color);
color            1627 ext/gd/libgd/gd.c void gdImageStringUp16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color)
color            1633 ext/gd/libgd/gd.c 		gdImageCharUp(im, f, x, y, s[i], color);
color            1666 ext/gd/libgd/gd.c void gdImageArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color)
color            1669 ext/gd/libgd/gd.c 		gdImageEllipse(im, cx, cy, w, h, color);
color            1671 ext/gd/libgd/gd.c 		gdImageFilledArc(im, cx, cy, w, h, s, e, color, gdNoFill);
color            1675 ext/gd/libgd/gd.c void gdImageFilledArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style)
color            1713 ext/gd/libgd/gd.c 					gdImageLine(im, lx, ly, x, y, color);
color            1722 ext/gd/libgd/gd.c 					gdImageFilledPolygon(im, pts, 3, color);
color            1735 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, lx, ly, color);
color            1736 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, fx, fy, color);
color            1738 ext/gd/libgd/gd.c 			gdImageLine(im, fx, fy, lx, ly, color);
color            1746 ext/gd/libgd/gd.c 			gdImageFilledPolygon(im, pts, 3, color);
color            1751 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, lx, ly, color);
color            1752 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, fx, fy, color);
color            1758 ext/gd/libgd/gd.c void gdImageFillToBorder (gdImagePtr im, int x, int y, int border, int color)
color            1788 ext/gd/libgd/gd.c 		gdImageSetPixel(im, i, y, color);
color            1801 ext/gd/libgd/gd.c 		gdImageSetPixel(im, i, y, color);
color            1811 ext/gd/libgd/gd.c 				if ((c != border) && (c != color)) {
color            1812 ext/gd/libgd/gd.c 					gdImageFillToBorder(im, i, y - 1, border, color);
color            1815 ext/gd/libgd/gd.c 			} else if ((c == border) || (c == color)) {
color            1828 ext/gd/libgd/gd.c 				if ((c != border) && (c != color)) {
color            1829 ext/gd/libgd/gd.c 					gdImageFillToBorder(im, i, y + 1, border, color);
color            1832 ext/gd/libgd/gd.c 			} else if ((c == border) || (c == color)) {
color            2034 ext/gd/libgd/gd.c void gdImageRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            2041 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
color            2072 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2080 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2088 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2096 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2103 ext/gd/libgd/gd.c 			gdImageLine(im, x1, y1, x2, y2, color);
color            2107 ext/gd/libgd/gd.c 			gdImageLine(im, x1h, y1h, x2h, y1h, color);
color            2108 ext/gd/libgd/gd.c 			gdImageLine(im, x1h, y2h, x2h, y2h, color);
color            2109 ext/gd/libgd/gd.c 			gdImageLine(im, x1v, y1v, x1v, y2v, color);
color            2110 ext/gd/libgd/gd.c 			gdImageLine(im, x2v, y1v, x2v, y2v, color);
color            2115 ext/gd/libgd/gd.c void gdImageFilledRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            2121 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
color            2155 ext/gd/libgd/gd.c 			gdImageSetPixel (im, x, y, color);
color            2569 ext/gd/libgd/gd.c 	typedef void (*image_line)(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             416 ext/gd/libgd/gd.h void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
color             423 ext/gd/libgd/gd.h void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             424 ext/gd/libgd/gd.h void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             428 ext/gd/libgd/gd.h void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             431 ext/gd/libgd/gd.h void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             433 ext/gd/libgd/gd.h void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             436 ext/gd/libgd/gd.h void gdImageChar(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
color             437 ext/gd/libgd/gd.h void gdImageCharUp(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
color             438 ext/gd/libgd/gd.h void gdImageString(gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color);
color             439 ext/gd/libgd/gd.h void gdImageStringUp(gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color);
color             440 ext/gd/libgd/gd.h void gdImageString16(gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color);
color             441 ext/gd/libgd/gd.h void gdImageStringUp16(gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color);
color             546 ext/gd/libgd/gd.h void gdImageColorDeallocate(gdImagePtr im, int color);
color             583 ext/gd/libgd/gd.h void gdImageColorTransparent(gdImagePtr im, int color);
color             666 ext/gd/libgd/gd.h void gdImageFilledArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style);
color             667 ext/gd/libgd/gd.h void gdImageArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color);
color             668 ext/gd/libgd/gd.h void gdImageFilledEllipse(gdImagePtr im, int cx, int cy, int w, int h, int color);
color             669 ext/gd/libgd/gd.h void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color);
color             670 ext/gd/libgd/gd.h void gdImageFill(gdImagePtr im, int x, int y, int color);
color             838 ext/gd/libgd/gd.h gdImagePtr gdImageCropThreshold(gdImagePtr im, const unsigned int color, const float threshold);
color              16 ext/gd/libgd/gd_arc_f_buggy.c gdImageFilledEllipse (gdImagePtr im, int cx, int cy, int width, int height, int color)
color              18 ext/gd/libgd/gd_arc_f_buggy.c   gdImageFilledArc (im, cx, cy, width, height, 0, 360, color, gdChord);
color              22 ext/gd/libgd/gd_arc_f_buggy.c gdImageFilledArc (gdImagePtr im, int cx, int cy, int width, int height, int s, int e, int color, int style)
color             110 ext/gd/libgd/gd_arc_f_buggy.c 	  gdImageFilledArc (im, cx, cy, width, height, s, (i + 1) * 90, color, gdChord);
color             118 ext/gd/libgd/gd_arc_f_buggy.c 	      gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, e, color, gdChord);
color             124 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledPolygon (im, pt, 3, color);
color             125 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImagePolygon (im, pt, 3, color);
color             131 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledPolygon (im, pt, 4, color);
color             132 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImagePolygon (im, pt, 4, color);
color             137 ext/gd/libgd/gd_arc_f_buggy.c 	      gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, (i + 2) * 90, color, gdChord);
color             142 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, e, color, gdChord);
color             148 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledPolygon (im, pt, 4, color);
color             149 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImagePolygon (im, pt, 4, color);
color             155 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledPolygon (im, pt, 5, color);
color             156 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImagePolygon (im, pt, 5, color);
color             161 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, (i + 3) * 90, color, gdChord);
color             166 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledArc (im, cx, cy, width, height, (i + 3) * 90, e, color, gdChord);
color             172 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 5, color);
color             173 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 5, color);
color             179 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 6, color);
color             180 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 6, color);
color             185 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledArc (im, cx, cy, width, height, (i + 3) * 90, (i + 4) * 90, color, gdChord);
color             189 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledArc (im, cx, cy, width, height, (i + 4) * 90, e, color, gdChord);
color             195 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 6, color);
color             196 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 6, color);
color             202 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 7, color);
color             203 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 7, color);
color             375 ext/gd/libgd/gd_arc_f_buggy.c       gdImageFilledPolygon (im, pt, 3, color);
color             376 ext/gd/libgd/gd_arc_f_buggy.c       gdImagePolygon (im, pt, 3, color);
color             397 ext/gd/libgd/gd_arc_f_buggy.c       gdImageFilledPolygon (im, pt, 3, color);
color             398 ext/gd/libgd/gd_arc_f_buggy.c       gdImagePolygon (im, pt, 3, color);
color             462 ext/gd/libgd/gd_arc_f_buggy.c 			       ((flip_y) ? (cy - y) : (cy + y)), color);
color             527 ext/gd/libgd/gd_arc_f_buggy.c 			       ((flip_y) ? (cy - y) : (cy + y)), color);
color              19 ext/gd/libgd/gd_color.c 	int color, rgb;
color              41 ext/gd/libgd/gd_color.c 			color = im2->pixels[y][x];
color              43 ext/gd/libgd/gd_color.c 			bp = buf + (color * 5);
color              52 ext/gd/libgd/gd_color.c 	for (color=0; color<im2->colorsTotal; color++) {
color              55 ext/gd/libgd/gd_color.c 			im2->red[color]		= *(bp++) / count;
color              56 ext/gd/libgd/gd_color.c 			im2->green[color]	= *(bp++) / count;
color              57 ext/gd/libgd/gd_color.c 			im2->blue[color]	= *(bp++) / count;
color              58 ext/gd/libgd/gd_color.c 			im2->alpha[color]	= *(bp++) / count;
color              27 ext/gd/libgd/gd_crop.c static int gdGuessBackgroundColorFromCorners(gdImagePtr im, int *color);
color             120 ext/gd/libgd/gd_crop.c 	int color, corners, match;
color             130 ext/gd/libgd/gd_crop.c 			color = gdImageGetTransparent(im);
color             134 ext/gd/libgd/gd_crop.c 			color = gdImageColorClosestAlpha(im, 0, 0, 0, 0);
color             138 ext/gd/libgd/gd_crop.c 			color = gdImageColorClosestAlpha(im, 255, 255, 255, 0);
color             142 ext/gd/libgd/gd_crop.c 			corners = gdGuessBackgroundColorFromCorners(im, &color);
color             147 ext/gd/libgd/gd_crop.c 			color = gdImageGetTransparent(im);
color             148 ext/gd/libgd/gd_crop.c 			if (color == -1) {
color             149 ext/gd/libgd/gd_crop.c 				corners = gdGuessBackgroundColorFromCorners(im, &color);
color             162 ext/gd/libgd/gd_crop.c 			match = (color == c2);
color             177 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
color             190 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
color             198 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
color             227 ext/gd/libgd/gd_crop.c gdImagePtr gdImageCropThreshold(gdImagePtr im, const unsigned int color, const float threshold)
color             253 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
color             269 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x, y), threshold)) > 0;
color             282 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
color             290 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
color             304 ext/gd/libgd/gd_crop.c static int gdGuessBackgroundColorFromCorners(gdImagePtr im, int *color)
color             312 ext/gd/libgd/gd_crop.c 		*color = tr;
color             315 ext/gd/libgd/gd_crop.c 		*color = tl;
color             318 ext/gd/libgd/gd_crop.c 		*color = tl;
color             321 ext/gd/libgd/gd_crop.c 		*color = tl;
color             324 ext/gd/libgd/gd_crop.c 		*color = tl;
color             327 ext/gd/libgd/gd_crop.c 		*color = tr;
color             330 ext/gd/libgd/gd_crop.c 		*color = bl;
color             339 ext/gd/libgd/gd_crop.c 		*color = gdImageColorClosestAlpha(im, r, g, b, a);
color            1160 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowColorTC(gdImagePtr im, const int x, const int y, const int color)
color             111 ext/gd/libgd/wbmp.c createwbmp (int width, int height, int color)
color             137 ext/gd/libgd/wbmp.c   for (i = 0; i < width * height; wbmp->bitmap[i++] = color);
color              46 ext/gd/libgd/wbmp.h Wbmp   *createwbmp( int width, int height, int color );
color             427 sapi/cli/php_cli_server.c 	cg->color = 0;
color             431 sapi/cli/php_cli_server.c 	STD_PHP_INI_BOOLEAN("cli_server.color", "0", PHP_INI_ALL, OnUpdateBool, color, zend_cli_server_globals, cli_server_globals)
color            1080 sapi/cli/php_cli_server.c 	int color = 0, effective_status = status;
color            1102 sapi/cli/php_cli_server.c 	if (CLI_SERVER_G(color) && php_cli_is_output_tty() == OUTPUT_IS_TTY) {
color            1105 sapi/cli/php_cli_server.c 			color = 1;
color            1108 sapi/cli/php_cli_server.c 			color = 3;
color            1111 sapi/cli/php_cli_server.c 			color = 2;
color            1143 sapi/cli/php_cli_server.c 	if (color) {
color            1144 sapi/cli/php_cli_server.c 		php_cli_server_logf("\x1b[3%dm%s%s%s\x1b[0m", color, basic_buf, message_buf, error_buf);
color              31 sapi/cli/php_cli_server.h 	short color;
color             387 sapi/phpdbg/phpdbg.c 	char *color;
color             390 sapi/phpdbg/phpdbg.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ls", &element, &color, &color_len) == FAILURE) {
color             398 sapi/phpdbg/phpdbg.c 			phpdbg_set_color_ex(element, color, color_len);
color             706 sapi/phpdbg/phpdbg.c 	ZEND_ARG_INFO(0, color)
color              37 sapi/phpdbg/phpdbg_set.c 	PHPDBG_SET_COMMAND_D(color,        "usage: set color  <element> <color>",     'c', set_color,        NULL, "ss", PHPDBG_ASYNC_SAFE),
color             145 sapi/phpdbg/phpdbg_set.c PHPDBG_SET(color) /* {{{ */
color             147 sapi/phpdbg/phpdbg_set.c 	const phpdbg_color_t *color = phpdbg_get_color(param->next->str, param->next->len);
color             149 sapi/phpdbg/phpdbg_set.c 	if (!color) {
color             156 sapi/phpdbg/phpdbg_set.c 			phpdbg_notice("setcolor", "type=\"prompt\" color=\"%s\" code=\"%s\"", "setting prompt color to %s (%s)", color->name, color->code);
color             161 sapi/phpdbg/phpdbg_set.c 			phpdbg_set_color(PHPDBG_COLOR_PROMPT, color);
color             165 sapi/phpdbg/phpdbg_set.c 			phpdbg_notice("setcolor", "type=\"error\" color=\"%s\" code=\"%s\"", "setting error color to %s (%s)", color->name, color->code);
color             166 sapi/phpdbg/phpdbg_set.c 			phpdbg_set_color(PHPDBG_COLOR_ERROR, color);
color             170 sapi/phpdbg/phpdbg_set.c 			phpdbg_notice("setcolor", "type=\"notice\" color=\"%s\" code=\"%s\"", "setting notice color to %s (%s)", color->name, color->code);
color             171 sapi/phpdbg/phpdbg_set.c 			phpdbg_set_color(PHPDBG_COLOR_NOTICE, color);
color              30 sapi/phpdbg/phpdbg_set.h PHPDBG_SET(color);
color             232 sapi/phpdbg/phpdbg_utils.c 	const phpdbg_color_t *color = colors;
color             234 sapi/phpdbg/phpdbg_utils.c 	while (color && color->name) {
color             235 sapi/phpdbg/phpdbg_utils.c 		if (name_length == color->name_length &&
color             236 sapi/phpdbg/phpdbg_utils.c 			memcmp(name, color->name, name_length) == SUCCESS) {
color             237 sapi/phpdbg/phpdbg_utils.c 			phpdbg_debug("phpdbg_get_color(%s, %lu): %s", name, name_length, color->code);
color             238 sapi/phpdbg/phpdbg_utils.c 			return color;
color             240 sapi/phpdbg/phpdbg_utils.c 		++color;
color             248 sapi/phpdbg/phpdbg_utils.c PHPDBG_API void phpdbg_set_color(int element, const phpdbg_color_t *color) /* {{{ */
color             250 sapi/phpdbg/phpdbg_utils.c 	PHPDBG_G(colors)[element] = color;
color             255 sapi/phpdbg/phpdbg_utils.c 	const phpdbg_color_t *color = phpdbg_get_color(name, name_length);
color             257 sapi/phpdbg/phpdbg_utils.c 	if (color) {
color             258 sapi/phpdbg/phpdbg_utils.c 		phpdbg_set_color(element, color);
color              38 sapi/phpdbg/phpdbg_utils.h #define PHPDBG_COLOR_D(color, code) \
color              39 sapi/phpdbg/phpdbg_utils.h 	{color, sizeof(color)-1, code}
color              67 sapi/phpdbg/phpdbg_utils.h PHPDBG_API void phpdbg_set_color(int element, const phpdbg_color_t *color);