Lines Matching refs:gd_fxtoi

102 #define gd_fxtoi(x) ((x) >> 8)  macro
1110 const long m = gd_fxtoi(f_a); in gdImageScaleNearestNeighbour()
1111 const long n = gd_fxtoi(f_b); in gdImageScaleNearestNeighbour()
1121 const long m = gd_fxtoi(f_a); in gdImageScaleNearestNeighbour()
1122 const long n = gd_fxtoi(f_b); in gdImageScaleNearestNeighbour()
1168 register long m = gd_fxtoi(f_a); in gdImageScaleBilinearPalette()
1177 const long n = gd_fxtoi(f_b); in gdImageScaleBilinearPalette()
1218 …const unsigned char red = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_r1) + gd_mulfx(f_w2, f_r2) + g… in gdImageScaleBilinearPalette()
1219 …const unsigned char green = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_g1) + gd_mulfx(f_w2, f_g2) +… in gdImageScaleBilinearPalette()
1220 …const unsigned char blue = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_b1) + gd_mulfx(f_w2, f_b2) + … in gdImageScaleBilinearPalette()
1221 …const unsigned char alpha = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_a1) + gd_mulfx(f_w2, f_a2) +… in gdImageScaleBilinearPalette()
1267 const long m = gd_fxtoi(f_a); in gdImageScaleBilinearTC()
1268 const long n = gd_fxtoi(f_b); in gdImageScaleBilinearTC()
1307 …const unsigned char red = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_r1) + gd_mulfx(f_w2, f_r2) +… in gdImageScaleBilinearTC()
1308 …const unsigned char green = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_g1) + gd_mulfx(f_w2, f_g2) +… in gdImageScaleBilinearTC()
1309 …const unsigned char blue = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_b1) + gd_mulfx(f_w2, f_b2) +… in gdImageScaleBilinearTC()
1310 …const unsigned char alpha = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_a1) + gd_mulfx(f_w2, f_a2) +… in gdImageScaleBilinearTC()
1376 const long m = gd_fxtoi(f_a); in gdImageScaleBicubicFixed()
1377 const long n = gd_fxtoi(f_b); in gdImageScaleBicubicFixed()
1543 red = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1544 green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1545 blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1546 alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gamma)), 0, 127); in gdImageScaleBicubicFixed()
1650 long m = gd_fxtoi(f_m); in gdImageRotateNearestNeighbour()
1651 long n = gd_fxtoi(f_n); in gdImageRotateNearestNeighbour()
1715 long m = gd_fxtoi(f_m); in gdImageRotateGeneric()
1716 long n = gd_fxtoi(f_n); in gdImageRotateGeneric()
1773 const int m = gd_fxtoi(f_m); in gdImageRotateBilinear()
1774 const int n = gd_fxtoi(f_n); in gdImageRotateBilinear()
1832 const unsigned char red = (unsigned char) CLAMP(gd_fxtoi(f_red), 0, 255); in gdImageRotateBilinear()
1833 const unsigned char green = (unsigned char) CLAMP(gd_fxtoi(f_green), 0, 255); in gdImageRotateBilinear()
1834 const unsigned char blue = (unsigned char) CLAMP(gd_fxtoi(f_blue), 0, 255); in gdImageRotateBilinear()
1835 const unsigned char alpha = (unsigned char) CLAMP(gd_fxtoi(f_alpha), 0, 127); in gdImageRotateBilinear()
1891 const int m = gd_fxtoi(f_m); in gdImageRotateBicubicFixed()
1892 const int n = gd_fxtoi(f_n); in gdImageRotateBicubicFixed()
2098 red = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
2099 green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
2100 blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
2101 alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gama)), 0, 127); in gdImageRotateBicubicFixed()