Lines Matching refs:gd_fxtoi

102 #define gd_fxtoi(x) ((x) >> 8)  macro
1140 const long m = gd_fxtoi(f_a); in gdImageScaleNearestNeighbour()
1141 const long n = gd_fxtoi(f_b); in gdImageScaleNearestNeighbour()
1151 const long m = gd_fxtoi(f_a); in gdImageScaleNearestNeighbour()
1152 const long n = gd_fxtoi(f_b); in gdImageScaleNearestNeighbour()
1198 register long m = gd_fxtoi(f_a); in gdImageScaleBilinearPalette()
1207 const long n = gd_fxtoi(f_b); in gdImageScaleBilinearPalette()
1248 …const unsigned char red = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_r1) + gd_mulfx(f_w2, f_r2) + g… in gdImageScaleBilinearPalette()
1249 …const unsigned char green = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_g1) + gd_mulfx(f_w2, f_g2) +… in gdImageScaleBilinearPalette()
1250 …const unsigned char blue = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_b1) + gd_mulfx(f_w2, f_b2) + … in gdImageScaleBilinearPalette()
1251 …const unsigned char alpha = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_a1) + gd_mulfx(f_w2, f_a2) +… in gdImageScaleBilinearPalette()
1297 const long m = gd_fxtoi(f_a); in gdImageScaleBilinearTC()
1298 const long n = gd_fxtoi(f_b); in gdImageScaleBilinearTC()
1337 …const unsigned char red = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_r1) + gd_mulfx(f_w2, f_r2) +… in gdImageScaleBilinearTC()
1338 …const unsigned char green = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_g1) + gd_mulfx(f_w2, f_g2) +… in gdImageScaleBilinearTC()
1339 …const unsigned char blue = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_b1) + gd_mulfx(f_w2, f_b2) +… in gdImageScaleBilinearTC()
1340 …const unsigned char alpha = (unsigned char) gd_fxtoi(gd_mulfx(f_w1, f_a1) + gd_mulfx(f_w2, f_a2) +… in gdImageScaleBilinearTC()
1406 const long m = gd_fxtoi(f_a); in gdImageScaleBicubicFixed()
1407 const long n = gd_fxtoi(f_b); in gdImageScaleBicubicFixed()
1573 red = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1574 green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1575 blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1576 alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gamma)), 0, 127); in gdImageScaleBicubicFixed()
1680 long m = gd_fxtoi(f_m); in gdImageRotateNearestNeighbour()
1681 long n = gd_fxtoi(f_n); in gdImageRotateNearestNeighbour()
1745 long m = gd_fxtoi(f_m); in gdImageRotateGeneric()
1746 long n = gd_fxtoi(f_n); in gdImageRotateGeneric()
1803 const int m = gd_fxtoi(f_m); in gdImageRotateBilinear()
1804 const int n = gd_fxtoi(f_n); in gdImageRotateBilinear()
1862 const unsigned char red = (unsigned char) CLAMP(gd_fxtoi(f_red), 0, 255); in gdImageRotateBilinear()
1863 const unsigned char green = (unsigned char) CLAMP(gd_fxtoi(f_green), 0, 255); in gdImageRotateBilinear()
1864 const unsigned char blue = (unsigned char) CLAMP(gd_fxtoi(f_blue), 0, 255); in gdImageRotateBilinear()
1865 const unsigned char alpha = (unsigned char) CLAMP(gd_fxtoi(f_alpha), 0, 127); in gdImageRotateBilinear()
1921 const int m = gd_fxtoi(f_m); in gdImageRotateBicubicFixed()
1922 const int n = gd_fxtoi(f_n); in gdImageRotateBicubicFixed()
2128 red = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_red, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
2129 green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
2130 blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
2131 alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gama)), 0, 127); in gdImageRotateBicubicFixed()