gdAlphaMax       2601 ext/gd/libgd/gd.c 					alpha_factor = ((gdAlphaMax - gdTrueColorGetAlpha(p))) * pcontribution;
gdAlphaMax       2642 ext/gd/libgd/gd.c 			if (alpha > gdAlphaMax) {
gdAlphaMax       2643 ext/gd/libgd/gd.c 				alpha = gdAlphaMax;
gdAlphaMax       3487 ext/gd/libgd/gd.c 	     gdTrueColorGetAlpha (dst)) / gdAlphaMax) << 24) +
gdAlphaMax       3489 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (src) / gdAlphaMax) +
gdAlphaMax       3491 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (dst)) / gdAlphaMax) << 16) +
gdAlphaMax       3493 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (src) / gdAlphaMax) +
gdAlphaMax       3495 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (dst)) / gdAlphaMax) << 8) +
gdAlphaMax       3497 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (src) / gdAlphaMax) +
gdAlphaMax       3499 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (dst)) / gdAlphaMax));
gdAlphaMax       3525 ext/gd/libgd/gd.c     dst_weight = (gdAlphaTransparent - dst_alpha) * src_alpha / gdAlphaMax;
gdAlphaMax       3531 ext/gd/libgd/gd.c     alpha = src_alpha * dst_alpha / gdAlphaMax;
gdAlphaMax       3567 ext/gd/libgd/gd.c 	a1 = gdAlphaMax - gdTrueColorGetAlpha(dst);
gdAlphaMax       3568 ext/gd/libgd/gd.c 	a2 = gdAlphaMax - gdTrueColorGetAlpha(src);
gdAlphaMax       3569 ext/gd/libgd/gd.c 	return ( ((gdAlphaMax - a1*a2/gdAlphaMax) << 24) +
gdAlphaMax        240 ext/gd/libgd/gd_png.c 					im->alpha[i] = gdAlphaMax - (trans[i] >> 1);
gdAlphaMax        376 ext/gd/libgd/gd_png.c 					register png_byte a = gdAlphaMax - (row_pointers[h][boffset++] >> 1);
gdAlphaMax        573 ext/gd/libgd/gdft.c 						gdAlphaMax - (gdTrueColorGetAlpha (fg) * pixel / NUMCOLORS));
gdAlphaMax        619 ext/gd/libgd/gdft.c 					level = (bitmap.buffer[pc] * gdAlphaMax / (bitmap.num_grays - 1));
gdAlphaMax        632 ext/gd/libgd/gdft.c 					level = level * (gdAlphaMax - gdTrueColorGetAlpha(fg)) / gdAlphaMax;
gdAlphaMax        634 ext/gd/libgd/gdft.c 				level = gdAlphaMax - level;
gdAlphaMax        644 ext/gd/libgd/gdft.c 					if (level < (gdAlphaMax / 2)) {