Home | History | Annotate | Download | only in base

Lines Matching defs:FT_MulFix

29   /* FT_MulDiv(), FT_MulFix(), FT_DivFix(), FT_RoundFix(), FT_CeilFix(),   */
44 #undef FT_MulFix
231 FT_MulFix( FT_Long a_,
394 /* FT_MulFix, on the other hand, is optimized for a small value of */
508 FT_MulFix( FT_Long a_,
669 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx );
670 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy );
671 yx = FT_MulFix( a->yx, b->xx ) + FT_MulFix( a->yy, b->yx );
672 yy = FT_MulFix( a->yx, b->xy ) + FT_MulFix( a->yy, b->yy );
691 delta = FT_MulFix( matrix->xx, matrix->yy ) -
692 FT_MulFix( matrix->xy, matrix->yx );