Lines Matching refs:gdFixed

92 typedef long gdFixed;  typedef
648 static inline int _setEdgePixel(const gdImagePtr src, unsigned int x, unsigned int y, gdFixed cover… in _setEdgePixel()
650 const gdFixed f_127 = gd_itofx(127); in _setEdgePixel()
1161 const gdFixed f_dx = gd_ftofx(dx); in gdImageScaleNearestNeighbour()
1162 const gdFixed f_dy = gd_ftofx(dy); in gdImageScaleNearestNeighbour()
1184 const gdFixed f_i = gd_itofx(i); in gdImageScaleNearestNeighbour()
1185 const gdFixed f_j = gd_itofx(j); in gdImageScaleNearestNeighbour()
1186 const gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleNearestNeighbour()
1187 const gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleNearestNeighbour()
1195 const gdFixed f_i = gd_itofx(i); in gdImageScaleNearestNeighbour()
1196 const gdFixed f_j = gd_itofx(j); in gdImageScaleNearestNeighbour()
1197 const gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleNearestNeighbour()
1198 const gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleNearestNeighbour()
1264 gdFixed f_dx = gd_ftofx(dx); in gdImageScaleBilinearPalette()
1265 gdFixed f_dy = gd_ftofx(dy); in gdImageScaleBilinearPalette()
1266 gdFixed f_1 = gd_itofx(1); in gdImageScaleBilinearPalette()
1292 const gdFixed f_i = gd_itofx(i); in gdImageScaleBilinearPalette()
1293 const gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleBilinearPalette()
1300 gdFixed f_j = gd_itofx(j); in gdImageScaleBilinearPalette()
1301 gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleBilinearPalette()
1304 gdFixed f_f = f_a - gd_itofx(m); in gdImageScaleBilinearPalette()
1305 gdFixed f_g = f_b - gd_itofx(n); in gdImageScaleBilinearPalette()
1307 const gdFixed f_w1 = gd_mulfx(f_1-f_f, f_1-f_g); in gdImageScaleBilinearPalette()
1308 const gdFixed f_w2 = gd_mulfx(f_1-f_f, f_g); in gdImageScaleBilinearPalette()
1309 const gdFixed f_w3 = gd_mulfx(f_f, f_1-f_g); in gdImageScaleBilinearPalette()
1310 const gdFixed f_w4 = gd_mulfx(f_f, f_g); in gdImageScaleBilinearPalette()
1315 register gdFixed f_r1, f_r2, f_r3, f_r4, in gdImageScaleBilinearPalette()
1366 gdFixed f_dx = gd_ftofx(dx); in gdImageScaleBilinearTC()
1367 gdFixed f_dy = gd_ftofx(dy); in gdImageScaleBilinearTC()
1368 gdFixed f_1 = gd_itofx(1); in gdImageScaleBilinearTC()
1390 gdFixed f_i = gd_itofx(i); in gdImageScaleBilinearTC()
1391 gdFixed f_j = gd_itofx(j); in gdImageScaleBilinearTC()
1392 gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleBilinearTC()
1393 gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleBilinearTC()
1394 const gdFixed m = gd_fxtoi(f_a); in gdImageScaleBilinearTC()
1395 const gdFixed n = gd_fxtoi(f_b); in gdImageScaleBilinearTC()
1396 gdFixed f_f = f_a - gd_itofx(m); in gdImageScaleBilinearTC()
1397 gdFixed f_g = f_b - gd_itofx(n); in gdImageScaleBilinearTC()
1399 const gdFixed f_w1 = gd_mulfx(f_1-f_f, f_1-f_g); in gdImageScaleBilinearTC()
1400 const gdFixed f_w2 = gd_mulfx(f_1-f_f, f_g); in gdImageScaleBilinearTC()
1401 const gdFixed f_w3 = gd_mulfx(f_f, f_1-f_g); in gdImageScaleBilinearTC()
1402 const gdFixed f_w4 = gd_mulfx(f_f, f_g); in gdImageScaleBilinearTC()
1407 register gdFixed f_r1, f_r2, f_r3, f_r4, in gdImageScaleBilinearTC()
1466 const gdFixed f_dx = gd_ftofx((float)src_w / (float)new_width); in gdImageScaleBicubicFixed()
1467 const gdFixed f_dy = gd_ftofx((float)src_h / (float)new_height); in gdImageScaleBicubicFixed()
1468 const gdFixed f_1 = gd_itofx(1); in gdImageScaleBicubicFixed()
1469 const gdFixed f_2 = gd_itofx(2); in gdImageScaleBicubicFixed()
1470 const gdFixed f_4 = gd_itofx(4); in gdImageScaleBicubicFixed()
1471 const gdFixed f_6 = gd_itofx(6); in gdImageScaleBicubicFixed()
1472 const gdFixed f_gamma = gd_ftofx(1.04f); in gdImageScaleBicubicFixed()
1502 const gdFixed f_a = gd_mulfx(gd_itofx(i), f_dy); in gdImageScaleBicubicFixed()
1503 const gdFixed f_b = gd_mulfx(gd_itofx(j), f_dx); in gdImageScaleBicubicFixed()
1506 const gdFixed f_f = f_a - gd_itofx(m); in gdImageScaleBicubicFixed()
1507 const gdFixed f_g = f_b - gd_itofx(n); in gdImageScaleBicubicFixed()
1510 register gdFixed f_red = 0, f_green = 0, f_blue = 0, f_alpha = 0; in gdImageScaleBicubicFixed()
1622 const gdFixed f = gd_itofx(k)-f_f; in gdImageScaleBicubicFixed()
1623 const gdFixed f_fm1 = f - f_1; in gdImageScaleBicubicFixed()
1624 const gdFixed f_fp1 = f + f_1; in gdImageScaleBicubicFixed()
1625 const gdFixed f_fp2 = f + f_2; in gdImageScaleBicubicFixed()
1626 register gdFixed f_a = 0, f_b = 0, f_d = 0, f_c = 0; in gdImageScaleBicubicFixed()
1627 register gdFixed f_RY; in gdImageScaleBicubicFixed()
1638 const gdFixed f = gd_itofx(l) - f_g; in gdImageScaleBicubicFixed()
1639 const gdFixed f_fm1 = f - f_1; in gdImageScaleBicubicFixed()
1640 const gdFixed f_fp1 = f + f_1; in gdImageScaleBicubicFixed()
1641 const gdFixed f_fp2 = f + f_2; in gdImageScaleBicubicFixed()
1642 register gdFixed f_a = 0, f_b = 0, f_c = 0, f_d = 0; in gdImageScaleBicubicFixed()
1643 register gdFixed f_RX, f_R, f_rs, f_gs, f_bs, f_ba; in gdImageScaleBicubicFixed()
1744 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateNearestNeighbour()
1745 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateNearestNeighbour()
1746 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateNearestNeighbour()
1747 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateNearestNeighbour()
1748 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateNearestNeighbour()
1774 gdFixed f_i = gd_itofx((int)i - (int)new_height/2); in gdImageRotateNearestNeighbour()
1775 gdFixed f_j = gd_itofx((int)j - (int)new_width/2); in gdImageRotateNearestNeighbour()
1776 gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateNearestNeighbour()
1777 gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateNearestNeighbour()
1802 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateGeneric()
1803 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateGeneric()
1804 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateGeneric()
1805 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateGeneric()
1806 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateGeneric()
1815 const gdFixed f_slop_y = f_sin; in gdImageRotateGeneric()
1816 const gdFixed f_slop_x = f_cos; in gdImageRotateGeneric()
1817 const gdFixed f_slop = f_slop_x > 0 && f_slop_y > 0 ? in gdImageRotateGeneric()
1840 gdFixed f_i = gd_itofx((int)i - (int)new_height/ 2); in gdImageRotateGeneric()
1841 gdFixed f_j = gd_itofx((int)j - (int)new_width / 2); in gdImageRotateGeneric()
1842 gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateGeneric()
1843 gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateGeneric()
1850 gdFixed f_127 = gd_itofx(127); in gdImageRotateGeneric()
1870 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateBilinear()
1871 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBilinear()
1872 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateBilinear()
1873 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateBilinear()
1874 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBilinear()
1875 const gdFixed f_1 = gd_itofx(1); in gdImageRotateBilinear()
1899 const gdFixed f_i = gd_itofx((int)i - (int)new_height/2); in gdImageRotateBilinear()
1900 const gdFixed f_j = gd_itofx((int)j - (int)new_width/2); in gdImageRotateBilinear()
1901 const gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateBilinear()
1902 const gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateBilinear()
1907 const gdFixed f_f = f_m - gd_itofx(m); in gdImageRotateBilinear()
1908 const gdFixed f_g = f_n - gd_itofx(n); in gdImageRotateBilinear()
1909 const gdFixed f_w1 = gd_mulfx(f_1-f_f, f_1-f_g); in gdImageRotateBilinear()
1910 const gdFixed f_w2 = gd_mulfx(f_1-f_f, f_g); in gdImageRotateBilinear()
1911 const gdFixed f_w3 = gd_mulfx(f_f, f_1-f_g); in gdImageRotateBilinear()
1912 const gdFixed f_w4 = gd_mulfx(f_f, f_g); in gdImageRotateBilinear()
1941 const gdFixed f_r1 = gd_itofx(gdTrueColorGetRed(pixel1)); in gdImageRotateBilinear()
1942 const gdFixed f_r2 = gd_itofx(gdTrueColorGetRed(pixel2)); in gdImageRotateBilinear()
1943 const gdFixed f_r3 = gd_itofx(gdTrueColorGetRed(pixel3)); in gdImageRotateBilinear()
1944 const gdFixed f_r4 = gd_itofx(gdTrueColorGetRed(pixel4)); in gdImageRotateBilinear()
1945 const gdFixed f_g1 = gd_itofx(gdTrueColorGetGreen(pixel1)); in gdImageRotateBilinear()
1946 const gdFixed f_g2 = gd_itofx(gdTrueColorGetGreen(pixel2)); in gdImageRotateBilinear()
1947 const gdFixed f_g3 = gd_itofx(gdTrueColorGetGreen(pixel3)); in gdImageRotateBilinear()
1948 const gdFixed f_g4 = gd_itofx(gdTrueColorGetGreen(pixel4)); in gdImageRotateBilinear()
1949 const gdFixed f_b1 = gd_itofx(gdTrueColorGetBlue(pixel1)); in gdImageRotateBilinear()
1950 const gdFixed f_b2 = gd_itofx(gdTrueColorGetBlue(pixel2)); in gdImageRotateBilinear()
1951 const gdFixed f_b3 = gd_itofx(gdTrueColorGetBlue(pixel3)); in gdImageRotateBilinear()
1952 const gdFixed f_b4 = gd_itofx(gdTrueColorGetBlue(pixel4)); in gdImageRotateBilinear()
1953 const gdFixed f_a1 = gd_itofx(gdTrueColorGetAlpha(pixel1)); in gdImageRotateBilinear()
1954 const gdFixed f_a2 = gd_itofx(gdTrueColorGetAlpha(pixel2)); in gdImageRotateBilinear()
1955 const gdFixed f_a3 = gd_itofx(gdTrueColorGetAlpha(pixel3)); in gdImageRotateBilinear()
1956 const gdFixed f_a4 = gd_itofx(gdTrueColorGetAlpha(pixel4)); in gdImageRotateBilinear()
1957 …const gdFixed f_red = gd_mulfx(f_w1, f_r1) + gd_mulfx(f_w2, f_r2) + gd_mulfx(f_w3, f_r3) + gd_mulf… in gdImageRotateBilinear()
1958 …const gdFixed f_green = gd_mulfx(f_w1, f_g1) + gd_mulfx(f_w2, f_g2) + gd_mulfx(f_w3, f_g3) + gd_mu… in gdImageRotateBilinear()
1959 …const gdFixed f_blue = gd_mulfx(f_w1, f_b1) + gd_mulfx(f_w2, f_b2) + gd_mulfx(f_w3, f_b3) + gd_mul… in gdImageRotateBilinear()
1960 …const gdFixed f_alpha = gd_mulfx(f_w1, f_a1) + gd_mulfx(f_w2, f_a2) + gd_mulfx(f_w3, f_a3) + gd_mu… in gdImageRotateBilinear()
1985 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateBicubicFixed()
1986 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBicubicFixed()
1987 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateBicubicFixed()
1988 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateBicubicFixed()
1989 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBicubicFixed()
1990 const gdFixed f_1 = gd_itofx(1); in gdImageRotateBicubicFixed()
1991 const gdFixed f_2 = gd_itofx(2); in gdImageRotateBicubicFixed()
1992 const gdFixed f_4 = gd_itofx(4); in gdImageRotateBicubicFixed()
1993 const gdFixed f_6 = gd_itofx(6); in gdImageRotateBicubicFixed()
1994 const gdFixed f_gama = gd_ftofx(1.04f); in gdImageRotateBicubicFixed()
2017 const gdFixed f_i = gd_itofx((int)i - (int)new_height/2); in gdImageRotateBicubicFixed()
2018 const gdFixed f_j = gd_itofx((int)j - (int)new_width/2); in gdImageRotateBicubicFixed()
2019 const gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateBicubicFixed()
2020 const gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateBicubicFixed()
2025 const gdFixed f_f = f_m - gd_itofx(m); in gdImageRotateBicubicFixed()
2026 const gdFixed f_g = f_n - gd_itofx(n); in gdImageRotateBicubicFixed()
2029 gdFixed f_red=0, f_green=0, f_blue=0, f_alpha=0; in gdImageRotateBicubicFixed()
2150 const gdFixed f = gd_itofx(k)-f_f; in gdImageRotateBicubicFixed()
2151 const gdFixed f_fm1 = f - f_1; in gdImageRotateBicubicFixed()
2152 const gdFixed f_fp1 = f + f_1; in gdImageRotateBicubicFixed()
2153 const gdFixed f_fp2 = f + f_2; in gdImageRotateBicubicFixed()
2154 gdFixed f_a = 0, f_b = 0,f_c = 0, f_d = 0; in gdImageRotateBicubicFixed()
2155 gdFixed f_RY; in gdImageRotateBicubicFixed()
2176 const gdFixed f = gd_itofx(l) - f_g; in gdImageRotateBicubicFixed()
2177 const gdFixed f_fm1 = f - f_1; in gdImageRotateBicubicFixed()
2178 const gdFixed f_fp1 = f + f_1; in gdImageRotateBicubicFixed()
2179 const gdFixed f_fp2 = f + f_2; in gdImageRotateBicubicFixed()
2180 gdFixed f_a = 0, f_b = 0, f_c = 0, f_d = 0; in gdImageRotateBicubicFixed()
2181 gdFixed f_RX, f_R; in gdImageRotateBicubicFixed()
2183 register gdFixed f_rs, f_gs, f_bs, f_as; in gdImageRotateBicubicFixed()
2208 gdFixed f_127 = gd_itofx(127); in gdImageRotateBicubicFixed()