CLAMP 780 libgd/gd_interpolation.c r = CLAMP(r, 0, 255); CLAMP 781 libgd/gd_interpolation.c g = CLAMP(g, 0, 255); CLAMP 782 libgd/gd_interpolation.c b = CLAMP(b, 0, 255); CLAMP 783 libgd/gd_interpolation.c a = CLAMP(a, 0, gdAlphaMax); CLAMP 873 libgd/gd_interpolation.c new_r = CLAMP(new_r, 0, 255); CLAMP 874 libgd/gd_interpolation.c new_g = CLAMP(new_g, 0, 255); CLAMP 875 libgd/gd_interpolation.c new_b = CLAMP(new_b, 0, 255); CLAMP 876 libgd/gd_interpolation.c new_a = CLAMP(new_a, 0, gdAlphaMax); CLAMP 1612 libgd/gd_interpolation.c red = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gamma)), 0, 255); CLAMP 1613 libgd/gd_interpolation.c green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gamma)), 0, 255); CLAMP 1614 libgd/gd_interpolation.c blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gamma)), 0, 255); CLAMP 1615 libgd/gd_interpolation.c alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gamma)), 0, 127); CLAMP 1885 libgd/gd_interpolation.c const unsigned char red = (unsigned char) CLAMP(gd_fxtoi(f_red), 0, 255); CLAMP 1886 libgd/gd_interpolation.c const unsigned char green = (unsigned char) CLAMP(gd_fxtoi(f_green), 0, 255); CLAMP 1887 libgd/gd_interpolation.c const unsigned char blue = (unsigned char) CLAMP(gd_fxtoi(f_blue), 0, 255); CLAMP 1888 libgd/gd_interpolation.c const unsigned char alpha = (unsigned char) CLAMP(gd_fxtoi(f_alpha), 0, 127); CLAMP 2160 libgd/gd_interpolation.c red = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gama)), 0, 255); CLAMP 2161 libgd/gd_interpolation.c green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gama)), 0, 255); CLAMP 2162 libgd/gd_interpolation.c blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gama)), 0, 255); CLAMP 2163 libgd/gd_interpolation.c alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gama)), 0, 127); CLAMP 2234 libgd/gd_interpolation.c r->x = CLAMP(r->x, c1x, c2x); CLAMP 2235 libgd/gd_interpolation.c r->y = CLAMP(r->y, c1y, c2y); CLAMP 2236 libgd/gd_interpolation.c r->width = CLAMP(x1, c1x, c2x) - r->x + 1; CLAMP 2237 libgd/gd_interpolation.c r->height = CLAMP(y1, c1y, c2y) - r->y + 1;