Searched defs:im2 (Results 1 - 2 of 2) sorted by relevance

/external/stlport/src/
H A Dcomplex_trig.cpp108 _Tp im2 = 2.f * z._M_im; local
110 if (::abs(im2) > Tp_limit)
111 return complex<_Tp>(0.f, (im2 > 0 ? 1.f : -1.f));
113 _Tp den = ::cos(re2) + ::cosh(im2);
114 return complex<_Tp>(::sin(re2) / den, ::sinh(im2) / den);
172 _Tp im2 = 2.f * z._M_im; local
176 _Tp den = ::cosh(re2) + ::cos(im2);
177 return complex<_Tp>(::sinh(re2) / den, ::sin(im2) / den);
/external/chromium_org/chromeos/ime/
H A Dcomponent_extension_ime_manager.cc75 const input_method::InputMethodDescriptor& im2) {
76 return GetInputMethodCategory(im1.id()) < GetInputMethodCategory(im2.id());
74 InputMethodCompare(const input_method::InputMethodDescriptor& im1, const input_method::InputMethodDescriptor& im2) argument

Completed in 1313 milliseconds