gdAlphaMax       2515 ext/gd/libgd/gd.c 					alpha_factor = ((gdAlphaMax - gdTrueColorGetAlpha(p))) * pcontribution;
gdAlphaMax       2557 ext/gd/libgd/gd.c 			if (alpha > gdAlphaMax) {
gdAlphaMax       2558 ext/gd/libgd/gd.c 				alpha = gdAlphaMax;
gdAlphaMax       2868 ext/gd/libgd/gd.c 	     gdTrueColorGetAlpha (dst)) / gdAlphaMax) << 24) +
gdAlphaMax       2870 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (src) / gdAlphaMax) +
gdAlphaMax       2872 ext/gd/libgd/gd.c 	     gdTrueColorGetRed (dst)) / gdAlphaMax) << 16) +
gdAlphaMax       2874 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (src) / gdAlphaMax) +
gdAlphaMax       2876 ext/gd/libgd/gd.c 	     gdTrueColorGetGreen (dst)) / gdAlphaMax) << 8) +
gdAlphaMax       2878 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (src) / gdAlphaMax) +
gdAlphaMax       2880 ext/gd/libgd/gd.c 	    gdTrueColorGetBlue (dst)) / gdAlphaMax));
gdAlphaMax       2906 ext/gd/libgd/gd.c     dst_weight = (gdAlphaTransparent - dst_alpha) * src_alpha / gdAlphaMax;
gdAlphaMax       2912 ext/gd/libgd/gd.c     alpha = src_alpha * dst_alpha / gdAlphaMax;
gdAlphaMax       2948 ext/gd/libgd/gd.c 	a1 = gdAlphaMax - gdTrueColorGetAlpha(dst);
gdAlphaMax       2949 ext/gd/libgd/gd.c 	a2 = gdAlphaMax - gdTrueColorGetAlpha(src);
gdAlphaMax       2950 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         88 ext/gd/libgd/gd_webp.c 			register uint8_t a = gdAlphaMax - (*(p++) >> 1);
gdAlphaMax        608 ext/gd/libgd/gdft.c 						gdAlphaMax - (gdTrueColorGetAlpha (fg) * pixel / NUMCOLORS));
gdAlphaMax        654 ext/gd/libgd/gdft.c 					level = (bitmap.buffer[pc] * gdAlphaMax / (bitmap.num_grays - 1));
gdAlphaMax        667 ext/gd/libgd/gdft.c 					level = level * (gdAlphaMax - gdTrueColorGetAlpha(fg)) / gdAlphaMax;
gdAlphaMax        669 ext/gd/libgd/gdft.c 				level = gdAlphaMax - level;
gdAlphaMax        679 ext/gd/libgd/gdft.c 					if (level < (gdAlphaMax / 2)) {