CLAMP             780 ext/gd/libgd/gd_interpolation.c 	r = CLAMP(r, 0, 255);
CLAMP             781 ext/gd/libgd/gd_interpolation.c 	g = CLAMP(g, 0, 255);
CLAMP             782 ext/gd/libgd/gd_interpolation.c 	b = CLAMP(b, 0, 255);
CLAMP             783 ext/gd/libgd/gd_interpolation.c 	a = CLAMP(a, 0, gdAlphaMax);
CLAMP             873 ext/gd/libgd/gd_interpolation.c 	new_r = CLAMP(new_r, 0, 255);
CLAMP             874 ext/gd/libgd/gd_interpolation.c 	new_g = CLAMP(new_g, 0, 255);
CLAMP             875 ext/gd/libgd/gd_interpolation.c 	new_b = CLAMP(new_b, 0, 255);
CLAMP             876 ext/gd/libgd/gd_interpolation.c 	new_a = CLAMP(new_a, 0, gdAlphaMax);
CLAMP            1615 ext/gd/libgd/gd_interpolation.c 			red    = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red,   f_gamma)),  0, 255);
CLAMP            1616 ext/gd/libgd/gd_interpolation.c 			green  = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gamma)),  0, 255);
CLAMP            1617 ext/gd/libgd/gd_interpolation.c 			blue   = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue,  f_gamma)),  0, 255);
CLAMP            1618 ext/gd/libgd/gd_interpolation.c 			alpha  = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha,  f_gamma)), 0, 127);
CLAMP            1868 ext/gd/libgd/gd_interpolation.c 						const unsigned char red   = (unsigned char) CLAMP(gd_fxtoi(f_red),   0, 255);
CLAMP            1869 ext/gd/libgd/gd_interpolation.c 						const unsigned char green = (unsigned char) CLAMP(gd_fxtoi(f_green), 0, 255);
CLAMP            1870 ext/gd/libgd/gd_interpolation.c 						const unsigned char blue  = (unsigned char) CLAMP(gd_fxtoi(f_blue),  0, 255);
CLAMP            1871 ext/gd/libgd/gd_interpolation.c 						const unsigned char alpha = (unsigned char) CLAMP(gd_fxtoi(f_alpha), 0, 127);
CLAMP            2136 ext/gd/libgd/gd_interpolation.c 				red   = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gama)),   0, 255);
CLAMP            2137 ext/gd/libgd/gd_interpolation.c 				green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gama)), 0, 255);
CLAMP            2138 ext/gd/libgd/gd_interpolation.c 				blue  = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gama)),  0, 255);
CLAMP            2139 ext/gd/libgd/gd_interpolation.c 				alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gama)), 0, 127);
CLAMP            2220 ext/gd/libgd/gd_interpolation.c 	r->x = CLAMP(r->x, c1x, c2x);
CLAMP            2221 ext/gd/libgd/gd_interpolation.c 	r->y = CLAMP(r->y, c1y, c2y);
CLAMP            2222 ext/gd/libgd/gd_interpolation.c 	r->width = CLAMP(x1, c1x, c2x) - r->x + 1;
CLAMP            2223 ext/gd/libgd/gd_interpolation.c 	r->height = CLAMP(y1, c1y, c2y) - r->y + 1;