Home | History | Annotate | Download | only in raster

Lines Matching defs:FT_Long

45   typedef signed long    FT_Long;
98 static FT_Long
99 FT_MulDiv( FT_Long a,
100 FT_Long b,
101 FT_Long c )
104 FT_Long d;
112 d = (FT_Long)( c > 0 ? ( (FT_Int64)a * b + ( c >> 1 ) ) / c
119 static FT_Long
120 FT_MulDiv_No_Round( FT_Long a,
121 FT_Long b,
122 FT_Long c )
125 FT_Long d;
133 d = (FT_Long)( c > 0 ? (FT_Int64)a * b / c