gdAlphaMax       2517 ext/gd/libgd/gd.c 					alpha_factor = ((gdAlphaMax - gdTrueColorGetAlpha(p))) * pcontribution;
gdAlphaMax       2559 ext/gd/libgd/gd.c 			if (alpha > gdAlphaMax) {
gdAlphaMax       2560 ext/gd/libgd/gd.c 				alpha = gdAlphaMax;
gdAlphaMax       2870 ext/gd/libgd/gd.c 	     gdTrueColorGetAlpha (dst)) / gdAlphaMax) << 24) +
gdAlphaMax       2872 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (src) / gdAlphaMax) +
gdAlphaMax       2874 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (dst)) / gdAlphaMax) << 16) +
gdAlphaMax       2876 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (src) / gdAlphaMax) +
gdAlphaMax       2878 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (dst)) / gdAlphaMax) << 8) +
gdAlphaMax       2880 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (src) / gdAlphaMax) +
gdAlphaMax       2882 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (dst)) / gdAlphaMax));
gdAlphaMax       2908 ext/gd/libgd/gd.c     dst_weight = (gdAlphaTransparent - dst_alpha) * src_alpha / gdAlphaMax;
gdAlphaMax       2914 ext/gd/libgd/gd.c     alpha = src_alpha * dst_alpha / gdAlphaMax;
gdAlphaMax       2950 ext/gd/libgd/gd.c 	a1 = gdAlphaMax - gdTrueColorGetAlpha(dst);
gdAlphaMax       2951 ext/gd/libgd/gd.c 	a2 = gdAlphaMax - gdTrueColorGetAlpha(src);
gdAlphaMax       2952 ext/gd/libgd/gd.c 	return ( ((gdAlphaMax - a1*a2/gdAlphaMax) << 24) +
gdAlphaMax        621 ext/gd/libgd/gd_interpolation.c 			const int dst_weight = (gdAlphaTransparent - dst_alpha) * src_alpha / gdAlphaMax;
gdAlphaMax        624 ext/gd/libgd/gd_interpolation.c 			alpha = src_alpha * dst_alpha / gdAlphaMax;
gdAlphaMax        785 ext/gd/libgd/gd_interpolation.c 	a = CLAMP(a, 0, gdAlphaMax);
gdAlphaMax        874 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        609 ext/gd/libgd/gdft.c 						gdAlphaMax - (gdTrueColorGetAlpha (fg) * pixel / NUMCOLORS));
gdAlphaMax        655 ext/gd/libgd/gdft.c 					level = (bitmap.buffer[pc] * gdAlphaMax / (bitmap.num_grays - 1));
gdAlphaMax        668 ext/gd/libgd/gdft.c 					level = level * (gdAlphaMax - gdTrueColorGetAlpha(fg)) / gdAlphaMax;
gdAlphaMax        670 ext/gd/libgd/gdft.c 				level = gdAlphaMax - level;
gdAlphaMax        680 ext/gd/libgd/gdft.c 					if (level < (gdAlphaMax / 2)) {