Searched refs:__im (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/cxx-stl/stlport/src/ |
D | complex_io.cpp | 50 float __im = 0; in operator >>() local 58 __is >> __im >> __c; in operator >>() 68 __z = complex<float>(__re, __im); in operator >>() 76 double __im = 0; in operator >>() local 84 __is >> __im >> __c; in operator >>() 94 __z = complex<double>(__re, __im); in operator >>() 103 long double __im = 0; in operator >>() local 111 __is >> __im >> __c; in operator >>() 121 __z = complex<long double>(__re, __im); in operator >>()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _complex.c | 109 _Tp __im = 0; variable 123 __is >> __im >> __c; 133 __z = complex<_Tp>(__re, __im);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | complex | 273 complex(const value_type& __re = value_type(), const value_type& __im = value_type()) 274 : __re_(__re), __im_(__im) {} 283 _LIBCPP_INLINE_VISIBILITY void imag(value_type __im) {__im_ = __im;} 333 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR complex(float __re = 0.0f, float __im = 0.0f) 334 : __re_(__re), __im_(__im) {} 342 _LIBCPP_INLINE_VISIBILITY void imag(value_type __im) {__im_ = __im;} 389 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR complex(double __re = 0.0, double __im = 0.0) 390 : __re_(__re), __im_(__im) {} 398 _LIBCPP_INLINE_VISIBILITY void imag(value_type __im) {__im_ = __im;} 445 …_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR complex(long double __re = 0.0L, long double __im = 0.… [all …]
|