gdAlphaMax       2507 ext/gd/libgd/gd.c 					alpha_factor = ((gdAlphaMax - gdTrueColorGetAlpha(p))) * pcontribution;
gdAlphaMax       2549 ext/gd/libgd/gd.c 			if (alpha > gdAlphaMax) {
gdAlphaMax       2550 ext/gd/libgd/gd.c 				alpha = gdAlphaMax;
gdAlphaMax       2860 ext/gd/libgd/gd.c 	     gdTrueColorGetAlpha (dst)) / gdAlphaMax) << 24) +
gdAlphaMax       2862 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (src) / gdAlphaMax) +
gdAlphaMax       2864 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (dst)) / gdAlphaMax) << 16) +
gdAlphaMax       2866 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (src) / gdAlphaMax) +
gdAlphaMax       2868 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (dst)) / gdAlphaMax) << 8) +
gdAlphaMax       2870 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (src) / gdAlphaMax) +
gdAlphaMax       2872 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (dst)) / gdAlphaMax));
gdAlphaMax       2898 ext/gd/libgd/gd.c     dst_weight = (gdAlphaTransparent - dst_alpha) * src_alpha / gdAlphaMax;
gdAlphaMax       2904 ext/gd/libgd/gd.c     alpha = src_alpha * dst_alpha / gdAlphaMax;
gdAlphaMax       2940 ext/gd/libgd/gd.c 	a1 = gdAlphaMax - gdTrueColorGetAlpha(dst);
gdAlphaMax       2941 ext/gd/libgd/gd.c 	a2 = gdAlphaMax - gdTrueColorGetAlpha(src);
gdAlphaMax       2942 ext/gd/libgd/gd.c 	return ( ((gdAlphaMax - a1*a2/gdAlphaMax) << 24) +
gdAlphaMax        619 ext/gd/libgd/gd_interpolation.c 			const int dst_weight = (gdAlphaTransparent - dst_alpha) * src_alpha / gdAlphaMax;
gdAlphaMax        622 ext/gd/libgd/gd_interpolation.c 			alpha = src_alpha * dst_alpha / gdAlphaMax;
gdAlphaMax        783 ext/gd/libgd/gd_interpolation.c 	a = CLAMP(a, 0, gdAlphaMax);
gdAlphaMax        876 ext/gd/libgd/gd_interpolation.c 	new_a = CLAMP(new_a, 0, gdAlphaMax);
gdAlphaMax        245 ext/gd/libgd/gd_png.c 					im->alpha[i] = gdAlphaMax - (trans[i] >> 1);
gdAlphaMax        385 ext/gd/libgd/gd_png.c 					register png_byte a = gdAlphaMax - (row_pointers[h][boffset++] >> 1);
gdAlphaMax        575 ext/gd/libgd/gdft.c 						gdAlphaMax - (gdTrueColorGetAlpha (fg) * pixel / NUMCOLORS));
gdAlphaMax        621 ext/gd/libgd/gdft.c 					level = (bitmap.buffer[pc] * gdAlphaMax / (bitmap.num_grays - 1));
gdAlphaMax        634 ext/gd/libgd/gdft.c 					level = level * (gdAlphaMax - gdTrueColorGetAlpha(fg)) / gdAlphaMax;
gdAlphaMax        636 ext/gd/libgd/gdft.c 				level = gdAlphaMax - level;
gdAlphaMax        646 ext/gd/libgd/gdft.c 					if (level < (gdAlphaMax / 2)) {