Home | History | Annotate | Download | only in include

Lines Matching full:__im

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.0L)
446 : __re_(__re), __im_(__im) {}
454 _LIBCPP_INLINE_VISIBILITY void imag(value_type __im) {__im_ = __im;}