Lines Matching refs:Fix
62 Fix ImpMultBig2( const Fix& a, const Fix& b ) in ImpMultBig2()
64 Fix f; in ImpMultBig2()
83 Fix rr = ImpMultBig2(ra.r,rb.r)-ImpMultBig2(ra.i,rb.i); in ImpMultBig2()
84 Fix ii = ImpMultBig2(ra.r,rb.i)+ImpMultBig2(ra.i,rb.r); in ImpMultBig2()
164 static sal_uInt16 ImpATanx2( const Fix& rX, const Fix& rY ) in ImpATanx2()
244 Fix rRad = ImpSqrt(sal_uLong(long(x)*x+long(y)*y)); in ImpATan2()
248 Fix fx = x; in ImpATan2()
250 Fix fy = y; in ImpATan2()
266 void ImpCartToPolar( const short x, const short y, Fix& rRad, sal_uInt16& rPhi ) in ImpCartToPolar()
268 rRad = Fix( ImpSqrt( sal_uLong( long(x)*x+long(y)*y ) ) ); in ImpCartToPolar()
275 Fix fx = x; in ImpCartToPolar()
277 Fix fy = y; in ImpCartToPolar()
293 void ImpPolarToCart( const Fix& rR, const sal_uInt16 Phi, short& rX, short& rY ) in ImpPolarToCart()