CLAMP             782 ext/gd/libgd/gd_interpolation.c 	r = CLAMP(r, 0, 255);
CLAMP             783 ext/gd/libgd/gd_interpolation.c 	g = CLAMP(g, 0, 255);
CLAMP             784 ext/gd/libgd/gd_interpolation.c 	b = CLAMP(b, 0, 255);
CLAMP             785 ext/gd/libgd/gd_interpolation.c 	a = CLAMP(a, 0, gdAlphaMax);
CLAMP             871 ext/gd/libgd/gd_interpolation.c 	new_r = CLAMP(new_r, 0, 255);
CLAMP             872 ext/gd/libgd/gd_interpolation.c 	new_g = CLAMP(new_g, 0, 255);
CLAMP             873 ext/gd/libgd/gd_interpolation.c 	new_b = CLAMP(new_b, 0, 255);
CLAMP             874 ext/gd/libgd/gd_interpolation.c 	new_a = CLAMP(new_a, 0, gdAlphaMax);
CLAMP            1613 ext/gd/libgd/gd_interpolation.c 			red    = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red,   f_gamma)),  0, 255);
CLAMP            1614 ext/gd/libgd/gd_interpolation.c 			green  = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gamma)),  0, 255);
CLAMP            1615 ext/gd/libgd/gd_interpolation.c 			blue   = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue,  f_gamma)),  0, 255);
CLAMP            1616 ext/gd/libgd/gd_interpolation.c 			alpha  = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha,  f_gamma)), 0, 127);
CLAMP            1871 ext/gd/libgd/gd_interpolation.c 						const unsigned char red   = (unsigned char) CLAMP(gd_fxtoi(f_red),   0, 255);
CLAMP            1872 ext/gd/libgd/gd_interpolation.c 						const unsigned char green = (unsigned char) CLAMP(gd_fxtoi(f_green), 0, 255);
CLAMP            1873 ext/gd/libgd/gd_interpolation.c 						const unsigned char blue  = (unsigned char) CLAMP(gd_fxtoi(f_blue),  0, 255);
CLAMP            1874 ext/gd/libgd/gd_interpolation.c 						const unsigned char alpha = (unsigned char) CLAMP(gd_fxtoi(f_alpha), 0, 127);
CLAMP            2139 ext/gd/libgd/gd_interpolation.c 				red   = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gama)),   0, 255);
CLAMP            2140 ext/gd/libgd/gd_interpolation.c 				green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gama)), 0, 255);
CLAMP            2141 ext/gd/libgd/gd_interpolation.c 				blue  = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gama)),  0, 255);
CLAMP            2142 ext/gd/libgd/gd_interpolation.c 				alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gama)), 0, 127);
CLAMP            2223 ext/gd/libgd/gd_interpolation.c 	r->x = CLAMP(r->x, c1x, c2x);
CLAMP            2224 ext/gd/libgd/gd_interpolation.c 	r->y = CLAMP(r->y, c1y, c2y);
CLAMP            2225 ext/gd/libgd/gd_interpolation.c 	r->width = CLAMP(x1, c1x, c2x) - r->x + 1;
CLAMP            2226 ext/gd/libgd/gd_interpolation.c 	r->height = CLAMP(y1, c1y, c2y) - r->y + 1;