Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/
H A Dcomplex312 complex(const value_type& __re = value_type(), const value_type& __im = value_type())
313 : __re_(__re), __im_(__im) {}
321 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void real(value_type __re) { __re_ = __re; }
324 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 complex& operator=(const value_type& __re) {
325 __re_ = __re;
329 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 complex& operator+=(const value_type& __re) {
330 __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) {
[all …]
H A Dregex5355 const regex_type& __re,
5360 const regex_type&& __re,
5391 const regex_type& __re,
5393 : __begin_(__a), __end_(__b), __pregex_(std::addressof(__re)), __flags_(__m) {
5488 const regex_type& __re,
5494 const regex_type&& __re,
5501 const regex_type& __re,
5507 const regex_type&& __re,
5515 const regex_type& __re,
5522 const regex_type&& __re,
[all …]
H A Dfstream513 ptrdiff_t __re = __rhs.__extbufend_ ? __rhs.__extbufend_ - __rhs.__extbuf_ : 0;
532 __extbufend_ = __extbuf_ + __re;
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h47 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()