colorsTotal       151 ext/gd/libgd/gd.c 	im->colorsTotal = 0;
colorsTotal       275 ext/gd/libgd/gd.c 	for (i = 0; i < im->colorsTotal; i++) {
colorsTotal       440 ext/gd/libgd/gd.c 	for (i = 0; i < im->colorsTotal; i++) {
colorsTotal       466 ext/gd/libgd/gd.c 	for (i = 0; i < im->colorsTotal; i++) {
colorsTotal       489 ext/gd/libgd/gd.c 	for (i = 0; i < im->colorsTotal; i++) {
colorsTotal       496 ext/gd/libgd/gd.c 		ct = im->colorsTotal;
colorsTotal       500 ext/gd/libgd/gd.c 		im->colorsTotal++;
colorsTotal       539 ext/gd/libgd/gd.c   for (c = 0; c < im->colorsTotal; c++)
colorsTotal       570 ext/gd/libgd/gd.c       op = im->colorsTotal;
colorsTotal       575 ext/gd/libgd/gd.c       im->colorsTotal++;
colorsTotal       600 ext/gd/libgd/gd.c 		if (color > -1 && color < im->colorsTotal && color < gdMaxColors) {
colorsTotal       633 ext/gd/libgd/gd.c 	for (i = 0; i < from->colorsTotal; i++) {
colorsTotal       641 ext/gd/libgd/gd.c 	for (i = from->colorsTotal; i < to->colorsTotal; i++) {
colorsTotal       645 ext/gd/libgd/gd.c 	to->colorsTotal = from->colorsTotal;
colorsTotal      1877 ext/gd/libgd/gd.c 	if (!im->trueColor && nc > (im->colorsTotal -1)) {
colorsTotal      2823 ext/gd/libgd/gd.c 	if (im1->colorsTotal != im2->colorsTotal) {
colorsTotal       177 ext/gd/libgd/gd.h 	int colorsTotal;
colorsTotal       730 ext/gd/libgd/gd.h #define gdImageColorsTotal(im) ((im)->colorsTotal)
colorsTotal        32 ext/gd/libgd/gd_color.c 	if (im2->colorsTotal<1) {
colorsTotal        36 ext/gd/libgd/gd_color.c 	buf = (unsigned long *)safe_emalloc(sizeof(unsigned long), 5 * im2->colorsTotal, 0);
colorsTotal        37 ext/gd/libgd/gd_color.c 	memset( buf, 0, sizeof(unsigned long) * 5 * im2->colorsTotal );
colorsTotal        52 ext/gd/libgd/gd_color.c 	for (color=0; color<im2->colorsTotal; color++) {
colorsTotal        39 ext/gd/libgd/gd_gd.c 			if (!gdGetWord(&im->colorsTotal, in)) {
colorsTotal        42 ext/gd/libgd/gd_gd.c 			if (im->colorsTotal > gdMaxColors) {
colorsTotal        51 ext/gd/libgd/gd_gd.c 		if (!gdGetByte(&im->colorsTotal, in)) {
colorsTotal        62 ext/gd/libgd/gd_gd.c 	GD2_DBG(printf("Pallette had %d colours (T=%d)\n", im->colorsTotal, im->transparent));
colorsTotal        85 ext/gd/libgd/gd_gd.c 	for (i = 0; i < im->colorsTotal; i++) {
colorsTotal       218 ext/gd/libgd/gd_gd.c 		gdPutWord(im->colorsTotal, out);
colorsTotal       188 ext/gd/libgd/gd_gd2.c 	GD2_DBG(php_gd_error("Image palette completed: %d colours", im->colorsTotal));
colorsTotal       460 ext/gd/libgd/gd_gd2.c 	GD2_DBG(php_gd_error("Image palette completed: %d colours", im->colorsTotal));
colorsTotal       261 ext/gd/libgd/gd_gif_in.c 	if (!im->colorsTotal) {
colorsTotal       268 ext/gd/libgd/gd_gif_in.c 	for (i=((im->colorsTotal-1)); (i>=0); i--) {
colorsTotal       270 ext/gd/libgd/gd_gif_in.c 			im->colorsTotal--;
colorsTotal       581 ext/gd/libgd/gd_gif_in.c 	im->colorsTotal = gdMaxColors;
colorsTotal       132 ext/gd/libgd/gd_gif_out.c 	BitsPerPixel = colorstobpp(tim->colorsTotal);
colorsTotal       336 ext/gd/libgd/gd_png.c 		im->colorsTotal = num_palette;
colorsTotal       469 ext/gd/libgd/gd_png.c 	int colors = im->colorsTotal;
colorsTotal       536 ext/gd/libgd/gd_png.c 		if (transparent >= im->colorsTotal || (transparent >= 0 && open[transparent])) {
colorsTotal       546 ext/gd/libgd/gd_png.c 		for (i = 0; i < im->colorsTotal; ++i) {
colorsTotal       556 ext/gd/libgd/gd_png.c 		if (colors < im->colorsTotal) {
colorsTotal       604 ext/gd/libgd/gd_png.c 		for (i = 0; (i < im->colorsTotal); i++) {
colorsTotal       611 ext/gd/libgd/gd_png.c 			for (i = 0; (i < im->colorsTotal); i++) {
colorsTotal       626 ext/gd/libgd/gd_png.c 			for (i = 0; i < im->colorsTotal; i++) {
colorsTotal       644 ext/gd/libgd/gd_png.c 			for (i = 0; i < im->colorsTotal; ++i) {
colorsTotal       825 ext/gd/libgd/gd_topal.c   nim->colorsTotal = numboxes;
colorsTotal       834 ext/gd/libgd/gd_topal.c       nim->red[nim->colorsTotal] = gdTrueColorGetRed (oim->transparent);
colorsTotal       835 ext/gd/libgd/gd_topal.c       nim->green[nim->colorsTotal] = gdTrueColorGetGreen (oim->transparent);
colorsTotal       836 ext/gd/libgd/gd_topal.c       nim->blue[nim->colorsTotal] = gdTrueColorGetBlue (oim->transparent);
colorsTotal       837 ext/gd/libgd/gd_topal.c       nim->alpha[nim->colorsTotal] = gdAlphaTransparent;
colorsTotal       838 ext/gd/libgd/gd_topal.c       nim->open[nim->colorsTotal] = 0;
colorsTotal       942 ext/gd/libgd/gd_topal.c   int numcolors = nim->colorsTotal;
colorsTotal      1334 ext/gd/libgd/gd_topal.c 	      *outptr++ = nim->colorsTotal;
colorsTotal      1444 ext/gd/libgd/gd_topal.c 	      *outptr = nim->colorsTotal;
colorsTotal      1957 ext/gd/libgd/gd_topal.c       for (i = 0; (i < im->colorsTotal); i++)
colorsTotal      1965 ext/gd/libgd/gd_topal.c       for (i = 0; (i < im->colorsTotal); i++)
colorsTotal      1977 ext/gd/libgd/gd_topal.c       for (i = 0; (i < im->colorsTotal); i++)
colorsTotal      1985 ext/gd/libgd/gd_topal.c       for (i = 0; (i < im->colorsTotal); i++)
colorsTotal      2002 ext/gd/libgd/gd_topal.c       nim->transparent = nim->colorsTotal;
colorsTotal      2003 ext/gd/libgd/gd_topal.c       nim->colorsTotal++;
colorsTotal        51 ext/gd/libgd/gdtest.c   printf ("Reference File has %d Palette entries\n", ref->colorsTotal);
colorsTotal       267 ext/gd/libgd/gdtest.c   printf ("[Merged Image has %d colours]\n", im2->colorsTotal);
colorsTotal       388 ext/gd/libgd/gdtest.c 	      im1->colorsTotal, im2->colorsTotal);