Home
last modified time | relevance | path

Searched refs:__re (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dcomplex_io.cpp49 float __re = 0; in operator >>() local
56 __is >> __re >> __c; in operator >>()
64 __is >> __re; in operator >>()
68 __z = complex<float>(__re, __im); in operator >>()
75 double __re = 0; in operator >>() local
82 __is >> __re >> __c; in operator >>()
90 __is >> __re; in operator >>()
94 __z = complex<double>(__re, __im); in operator >>()
102 long double __re = 0; in operator >>() local
109 __is >> __re >> __c; in operator >>()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcomplex273 complex(const value_type& __re = value_type(), const value_type& __im = value_type())
274 : __re_(__re), __im_(__im) {}
282 _LIBCPP_INLINE_VISIBILITY void real(value_type __re) {__re_ = __re;}
285 _LIBCPP_INLINE_VISIBILITY complex& operator= (const value_type& __re)
286 {__re_ = __re; __im_ = value_type(); return *this;}
287 …_LIBCPP_INLINE_VISIBILITY complex& operator+=(const value_type& __re) {__re_ += __re; return *this…
288 …_LIBCPP_INLINE_VISIBILITY complex& operator-=(const value_type& __re) {__re_ -= __re; return *this…
289 …PP_INLINE_VISIBILITY complex& operator*=(const value_type& __re) {__re_ *= __re; __im_ *= __re; re…
290 …PP_INLINE_VISIBILITY complex& operator/=(const value_type& __re) {__re_ /= __re; __im_ /= __re; re…
333 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR complex(float __re = 0.0f, float __im = 0.0f)
[all …]
Ddeque533 pointer __re = *__r.__m_iter_ + _B2;
534 difference_type __bs = __re - __rb;
619 pointer __re = __rp.__ptr_ + 1;
620 difference_type __bs = __re - __rb;
628 _VSTD::copy_backward(__m, __l, __re);
706 pointer __re = *__r.__m_iter_ + _B2;
707 difference_type __bs = __re - __rb;
792 pointer __re = __rp.__ptr_ + 1;
793 difference_type __bs = __re - __rb;
801 _VSTD::move_backward(__m, __l, __re);
Dregex5983 const regex_type& __re,
6014 const regex_type& __re, regex_constants::match_flag_type __m)
6017 __pregex_(&__re),
6097 const regex_type& __re, int __submatch = 0,
6101 const regex_type& __re, const vector<int>& __submatches,
6106 const regex_type& __re,
6114 const regex_type& __re,
6178 const regex_type& __re, int __submatch,
6180 : __position_(__a, __b, __re, __m),
6190 const regex_type& __re, const vector<int>& __submatches,
[all …]
Dfstream388 ptrdiff_t __re = __rhs.__extbufend_ - __rhs.__extbuf_;
400 __extbufend_ = __extbuf_ + __re;
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_complex.c108 _Tp __re = 0; variable
121 __is >> __re >> __c;
129 __is >> __re;
133 __z = complex<_Tp>(__re, __im);