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()
1079 const gdFixed f_dx = gd_ftofx(dx); in gdImageScaleNearestNeighbour()
1080 const gdFixed f_dy = gd_ftofx(dy); in gdImageScaleNearestNeighbour()
1102 const gdFixed f_i = gd_itofx(i); in gdImageScaleNearestNeighbour()
1103 const gdFixed f_j = gd_itofx(j); in gdImageScaleNearestNeighbour()
1104 const gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleNearestNeighbour()
1105 const gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleNearestNeighbour()
1113 const gdFixed f_i = gd_itofx(i); in gdImageScaleNearestNeighbour()
1114 const gdFixed f_j = gd_itofx(j); in gdImageScaleNearestNeighbour()
1115 const gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleNearestNeighbour()
1116 const gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleNearestNeighbour()
1182 gdFixed f_dx = gd_ftofx(dx); in gdImageScaleBilinearPalette()
1183 gdFixed f_dy = gd_ftofx(dy); in gdImageScaleBilinearPalette()
1184 gdFixed f_1 = gd_itofx(1); in gdImageScaleBilinearPalette()
1210 const gdFixed f_i = gd_itofx(i); in gdImageScaleBilinearPalette()
1211 const gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleBilinearPalette()
1218 gdFixed f_j = gd_itofx(j); in gdImageScaleBilinearPalette()
1219 gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleBilinearPalette()
1222 gdFixed f_f = f_a - gd_itofx(m); in gdImageScaleBilinearPalette()
1223 gdFixed f_g = f_b - gd_itofx(n); in gdImageScaleBilinearPalette()
1225 const gdFixed f_w1 = gd_mulfx(f_1-f_f, f_1-f_g); in gdImageScaleBilinearPalette()
1226 const gdFixed f_w2 = gd_mulfx(f_1-f_f, f_g); in gdImageScaleBilinearPalette()
1227 const gdFixed f_w3 = gd_mulfx(f_f, f_1-f_g); in gdImageScaleBilinearPalette()
1228 const gdFixed f_w4 = gd_mulfx(f_f, f_g); in gdImageScaleBilinearPalette()
1233 register gdFixed f_r1, f_r2, f_r3, f_r4, in gdImageScaleBilinearPalette()
1284 gdFixed f_dx = gd_ftofx(dx); in gdImageScaleBilinearTC()
1285 gdFixed f_dy = gd_ftofx(dy); in gdImageScaleBilinearTC()
1286 gdFixed f_1 = gd_itofx(1); in gdImageScaleBilinearTC()
1308 gdFixed f_i = gd_itofx(i); in gdImageScaleBilinearTC()
1309 gdFixed f_j = gd_itofx(j); in gdImageScaleBilinearTC()
1310 gdFixed f_a = gd_mulfx(f_i, f_dy); in gdImageScaleBilinearTC()
1311 gdFixed f_b = gd_mulfx(f_j, f_dx); in gdImageScaleBilinearTC()
1312 const gdFixed m = gd_fxtoi(f_a); in gdImageScaleBilinearTC()
1313 const gdFixed n = gd_fxtoi(f_b); in gdImageScaleBilinearTC()
1314 gdFixed f_f = f_a - gd_itofx(m); in gdImageScaleBilinearTC()
1315 gdFixed f_g = f_b - gd_itofx(n); in gdImageScaleBilinearTC()
1317 const gdFixed f_w1 = gd_mulfx(f_1-f_f, f_1-f_g); in gdImageScaleBilinearTC()
1318 const gdFixed f_w2 = gd_mulfx(f_1-f_f, f_g); in gdImageScaleBilinearTC()
1319 const gdFixed f_w3 = gd_mulfx(f_f, f_1-f_g); in gdImageScaleBilinearTC()
1320 const gdFixed f_w4 = gd_mulfx(f_f, f_g); in gdImageScaleBilinearTC()
1325 register gdFixed f_r1, f_r2, f_r3, f_r4, in gdImageScaleBilinearTC()
1384 const gdFixed f_dx = gd_ftofx((float)src_w / (float)new_width); in gdImageScaleBicubicFixed()
1385 const gdFixed f_dy = gd_ftofx((float)src_h / (float)new_height); in gdImageScaleBicubicFixed()
1386 const gdFixed f_1 = gd_itofx(1); in gdImageScaleBicubicFixed()
1387 const gdFixed f_2 = gd_itofx(2); in gdImageScaleBicubicFixed()
1388 const gdFixed f_4 = gd_itofx(4); in gdImageScaleBicubicFixed()
1389 const gdFixed f_6 = gd_itofx(6); in gdImageScaleBicubicFixed()
1390 const gdFixed f_gamma = gd_ftofx(1.04f); in gdImageScaleBicubicFixed()
1420 const gdFixed f_a = gd_mulfx(gd_itofx(i), f_dy); in gdImageScaleBicubicFixed()
1421 const gdFixed f_b = gd_mulfx(gd_itofx(j), f_dx); in gdImageScaleBicubicFixed()
1424 const gdFixed f_f = f_a - gd_itofx(m); in gdImageScaleBicubicFixed()
1425 const gdFixed f_g = f_b - gd_itofx(n); in gdImageScaleBicubicFixed()
1428 register gdFixed f_red = 0, f_green = 0, f_blue = 0, f_alpha = 0; in gdImageScaleBicubicFixed()
1540 const gdFixed f = gd_itofx(k)-f_f; in gdImageScaleBicubicFixed()
1541 const gdFixed f_fm1 = f - f_1; in gdImageScaleBicubicFixed()
1542 const gdFixed f_fp1 = f + f_1; in gdImageScaleBicubicFixed()
1543 const gdFixed f_fp2 = f + f_2; in gdImageScaleBicubicFixed()
1544 register gdFixed f_a = 0, f_b = 0, f_d = 0, f_c = 0; in gdImageScaleBicubicFixed()
1545 register gdFixed f_RY; in gdImageScaleBicubicFixed()
1556 const gdFixed f = gd_itofx(l) - f_g; in gdImageScaleBicubicFixed()
1557 const gdFixed f_fm1 = f - f_1; in gdImageScaleBicubicFixed()
1558 const gdFixed f_fp1 = f + f_1; in gdImageScaleBicubicFixed()
1559 const gdFixed f_fp2 = f + f_2; in gdImageScaleBicubicFixed()
1560 register gdFixed f_a = 0, f_b = 0, f_c = 0, f_d = 0; in gdImageScaleBicubicFixed()
1561 register gdFixed f_RX, f_R, f_rs, f_gs, f_bs, f_ba; in gdImageScaleBicubicFixed()
1662 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateNearestNeighbour()
1663 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateNearestNeighbour()
1664 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateNearestNeighbour()
1665 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateNearestNeighbour()
1666 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateNearestNeighbour()
1692 gdFixed f_i = gd_itofx((int)i - (int)new_height/2); in gdImageRotateNearestNeighbour()
1693 gdFixed f_j = gd_itofx((int)j - (int)new_width/2); in gdImageRotateNearestNeighbour()
1694 gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateNearestNeighbour()
1695 gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateNearestNeighbour()
1719 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateGeneric()
1720 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateGeneric()
1721 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateGeneric()
1722 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateGeneric()
1723 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateGeneric()
1732 const gdFixed f_slop_y = f_sin; in gdImageRotateGeneric()
1733 const gdFixed f_slop_x = f_cos; in gdImageRotateGeneric()
1734 const gdFixed f_slop = f_slop_x > 0 && f_slop_y > 0 ? in gdImageRotateGeneric()
1757 gdFixed f_i = gd_itofx((int)i - (int)new_height/ 2); in gdImageRotateGeneric()
1758 gdFixed f_j = gd_itofx((int)j - (int)new_width / 2); in gdImageRotateGeneric()
1759 gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateGeneric()
1760 gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateGeneric()
1786 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateBilinear()
1787 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBilinear()
1788 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateBilinear()
1789 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateBilinear()
1790 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBilinear()
1791 const gdFixed f_1 = gd_itofx(1); in gdImageRotateBilinear()
1815 const gdFixed f_i = gd_itofx((int)i - (int)new_height/2); in gdImageRotateBilinear()
1816 const gdFixed f_j = gd_itofx((int)j - (int)new_width/2); in gdImageRotateBilinear()
1817 const gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateBilinear()
1818 const gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateBilinear()
1823 const gdFixed f_f = f_m - gd_itofx(m); in gdImageRotateBilinear()
1824 const gdFixed f_g = f_n - gd_itofx(n); in gdImageRotateBilinear()
1825 const gdFixed f_w1 = gd_mulfx(f_1-f_f, f_1-f_g); in gdImageRotateBilinear()
1826 const gdFixed f_w2 = gd_mulfx(f_1-f_f, f_g); in gdImageRotateBilinear()
1827 const gdFixed f_w3 = gd_mulfx(f_f, f_1-f_g); in gdImageRotateBilinear()
1828 const gdFixed f_w4 = gd_mulfx(f_f, f_g); in gdImageRotateBilinear()
1857 const gdFixed f_r1 = gd_itofx(gdTrueColorGetRed(pixel1)); in gdImageRotateBilinear()
1858 const gdFixed f_r2 = gd_itofx(gdTrueColorGetRed(pixel2)); in gdImageRotateBilinear()
1859 const gdFixed f_r3 = gd_itofx(gdTrueColorGetRed(pixel3)); in gdImageRotateBilinear()
1860 const gdFixed f_r4 = gd_itofx(gdTrueColorGetRed(pixel4)); in gdImageRotateBilinear()
1861 const gdFixed f_g1 = gd_itofx(gdTrueColorGetGreen(pixel1)); in gdImageRotateBilinear()
1862 const gdFixed f_g2 = gd_itofx(gdTrueColorGetGreen(pixel2)); in gdImageRotateBilinear()
1863 const gdFixed f_g3 = gd_itofx(gdTrueColorGetGreen(pixel3)); in gdImageRotateBilinear()
1864 const gdFixed f_g4 = gd_itofx(gdTrueColorGetGreen(pixel4)); in gdImageRotateBilinear()
1865 const gdFixed f_b1 = gd_itofx(gdTrueColorGetBlue(pixel1)); in gdImageRotateBilinear()
1866 const gdFixed f_b2 = gd_itofx(gdTrueColorGetBlue(pixel2)); in gdImageRotateBilinear()
1867 const gdFixed f_b3 = gd_itofx(gdTrueColorGetBlue(pixel3)); in gdImageRotateBilinear()
1868 const gdFixed f_b4 = gd_itofx(gdTrueColorGetBlue(pixel4)); in gdImageRotateBilinear()
1869 const gdFixed f_a1 = gd_itofx(gdTrueColorGetAlpha(pixel1)); in gdImageRotateBilinear()
1870 const gdFixed f_a2 = gd_itofx(gdTrueColorGetAlpha(pixel2)); in gdImageRotateBilinear()
1871 const gdFixed f_a3 = gd_itofx(gdTrueColorGetAlpha(pixel3)); in gdImageRotateBilinear()
1872 const gdFixed f_a4 = gd_itofx(gdTrueColorGetAlpha(pixel4)); in gdImageRotateBilinear()
1873 …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()
1874 …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()
1875 …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()
1876 …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()
1901 const gdFixed f_0_5 = gd_ftofx(0.5f); in gdImageRotateBicubicFixed()
1902 const gdFixed f_H = gd_itofx(src_h/2); in gdImageRotateBicubicFixed()
1903 const gdFixed f_W = gd_itofx(src_w/2); in gdImageRotateBicubicFixed()
1904 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateBicubicFixed()
1905 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBicubicFixed()
1906 const gdFixed f_1 = gd_itofx(1); in gdImageRotateBicubicFixed()
1907 const gdFixed f_2 = gd_itofx(2); in gdImageRotateBicubicFixed()
1908 const gdFixed f_4 = gd_itofx(4); in gdImageRotateBicubicFixed()
1909 const gdFixed f_6 = gd_itofx(6); in gdImageRotateBicubicFixed()
1910 const gdFixed f_gama = gd_ftofx(1.04f); in gdImageRotateBicubicFixed()
1933 const gdFixed f_i = gd_itofx((int)i - (int)new_height/2); in gdImageRotateBicubicFixed()
1934 const gdFixed f_j = gd_itofx((int)j - (int)new_width/2); in gdImageRotateBicubicFixed()
1935 const gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H; in gdImageRotateBicubicFixed()
1936 const gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W; in gdImageRotateBicubicFixed()
1941 const gdFixed f_f = f_m - gd_itofx(m); in gdImageRotateBicubicFixed()
1942 const gdFixed f_g = f_n - gd_itofx(n); in gdImageRotateBicubicFixed()
1945 gdFixed f_red=0, f_green=0, f_blue=0, f_alpha=0; in gdImageRotateBicubicFixed()
2066 const gdFixed f = gd_itofx(k)-f_f; in gdImageRotateBicubicFixed()
2067 const gdFixed f_fm1 = f - f_1; in gdImageRotateBicubicFixed()
2068 const gdFixed f_fp1 = f + f_1; in gdImageRotateBicubicFixed()
2069 const gdFixed f_fp2 = f + f_2; in gdImageRotateBicubicFixed()
2070 gdFixed f_a = 0, f_b = 0,f_c = 0, f_d = 0; in gdImageRotateBicubicFixed()
2071 gdFixed f_RY; in gdImageRotateBicubicFixed()
2092 const gdFixed f = gd_itofx(l) - f_g; in gdImageRotateBicubicFixed()
2093 const gdFixed f_fm1 = f - f_1; in gdImageRotateBicubicFixed()
2094 const gdFixed f_fp1 = f + f_1; in gdImageRotateBicubicFixed()
2095 const gdFixed f_fp2 = f + f_2; in gdImageRotateBicubicFixed()
2096 gdFixed f_a = 0, f_b = 0, f_c = 0, f_d = 0; in gdImageRotateBicubicFixed()
2097 gdFixed f_RX, f_R; in gdImageRotateBicubicFixed()
2099 register gdFixed f_rs, f_gs, f_bs, f_as; in gdImageRotateBicubicFixed()
2124 gdFixed f_127 = gd_itofx(127); in gdImageRotateBicubicFixed()