Searched refs:__re (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | complex | 307 …_LIBCPP_HIDE_FROM_ABI complex(const value_type& __re = value_type(), const value_type& __im = valu… 308 : __re_(__re), __im_(__im) {} 315 _LIBCPP_HIDE_FROM_ABI void real(value_type __re) { __re_ = __re; } 318 _LIBCPP_HIDE_FROM_ABI complex& operator=(const value_type& __re) { 319 __re_ = __re; 323 _LIBCPP_HIDE_FROM_ABI complex& operator+=(const value_type& __re) { 324 __re_ += __re; 327 _LIBCPP_HIDE_FROM_ABI complex& operator-=(const value_type& __re) { 328 __re_ -= __re; 331 _LIBCPP_HIDE_FROM_ABI complex& operator*=(const value_type& __re) { [all …]
|
| H A D | regex | 5251 const regex_type& __re, 5276 const regex_type& __re, 5278 : __begin_(__a), __end_(__b), __pregex_(std::addressof(__re)), __flags_(__m) { 5370 const regex_type& __re, 5376 const regex_type& __re, 5383 const regex_type& __re, 5435 const regex_type& __re, 5438 : __position_(__a, __b, __re, __m), __n_(0), __subs_(1, __submatch) { 5446 const regex_type& __re, 5449 : __position_(__a, __b, __re, __m), __n_(0), __subs_(__submatches) { [all …]
|
| H A D | fstream | 481 ptrdiff_t __re = __rhs.__extbufend_ ? __rhs.__extbufend_ - __rhs.__extbuf_ : 0; 500 __extbufend_ = __extbuf_ + __re;
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | complex | 316 complex(const value_type& __re = value_type(), const value_type& __im = value_type()) 317 : __re_(__re), __im_(__im) {} 325 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void real(value_type __re) { __re_ = __re; } 328 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 complex& operator=(const value_type& __re) { 329 __re_ = __re; 333 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 complex& operator+=(const value_type& __re) { 334 __re_ += __re; 337 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 complex& operator-=(const value_type& __re) { 338 __re_ -= __re; 341 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 complex& operator*=(const value_type& __re) { [all …]
|
| H A D | regex | 5363 const regex_type& __re, 5368 const regex_type&& __re, 5399 const regex_type& __re, 5401 : __begin_(__a), __end_(__b), __pregex_(std::addressof(__re)), __flags_(__m) { 5496 const regex_type& __re, 5502 const regex_type&& __re, 5509 const regex_type& __re, 5515 const regex_type&& __re, 5523 const regex_type& __re, 5530 const regex_type&& __re, [all …]
|
| H A D | fstream | 527 ptrdiff_t __re = __rhs.__extbufend_ ? __rhs.__extbufend_ - __rhs.__extbuf_ : 0; 546 __extbufend_ = __extbuf_ + __re;
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/ |
| H A D | complex_cmath.h | 47 arg(_Tp __re) { in arg() argument 48 return atan2(0., __re); in arg() 52 typename enable_if<is_same<_Tp, float>::value, float>::type arg(_Tp __re) { in arg() argument 53 return atan2f(0.F, __re); in arg()
|