Home | History | Annotate | Download | only in base

Lines Matching refs:FT_Int32

110   FT_EXPORT_DEF( FT_Int32 )
111 FT_Sqrt32( FT_Int32 x )
235 FT_Int32 s;
381 ft_multo64( (FT_Int32)a, (FT_Int32)b, &temp );
386 a = ft_div64by32( temp.hi, temp.lo, (FT_Int32)c );
420 ft_multo64( (FT_Int32)a, (FT_Int32)b, &temp );
421 a = ft_div64by32( temp.hi, temp.lo, (FT_Int32)c );
539 FT_Int32 s;
544 s = (FT_Int32)a; a = FT_ABS( a );
545 s ^= (FT_Int32)b; b = FT_ABS( b );
562 temp.hi = (FT_Int32) (a >> 16);
567 q = ft_div64by32( temp.hi, temp.lo, (FT_Int32)b );
570 return ( s < 0 ? -(FT_Int32)q : (FT_Int32)q );
579 FT_MulTo64( FT_Int32 x,
580 FT_Int32 y,
583 FT_Int32 s;
593 z->lo = (FT_UInt32)-(FT_Int32)z->lo;
604 FT_EXPORT_DEF( FT_Int32 )
606 FT_Int32 y )
608 FT_Int32 s;
615 x->lo = (FT_UInt32)-(FT_Int32)x->lo;
628 return ( s < 0 ? -(FT_Int32)q : (FT_Int32)q );
653 return ( s < 0 ? -(FT_Int32)q : (FT_Int32)q );
658 FT_EXPORT_DEF( FT_Int32 )
660 FT_Int32 y )
662 FT_Int32 s;
669 x->lo = (FT_UInt32)-(FT_Int32)x->lo;
682 return ( s < 0 ? -(FT_Int32)q : (FT_Int32)q );
687 return ( s < 0 ? -(FT_Int32)q : (FT_Int32)q );
804 FT_BASE_DEF( FT_Int32 )
805 FT_SqrtFixed( FT_Int32 x )
833 return (FT_Int32)root;
895 ft_multo64( (FT_Int32)in_x, (FT_Int32)out_y, &z1 );
896 ft_multo64( (FT_Int32)in_y, (FT_Int32)out_x, &z2 );