Home
last modified time | relevance | path

Searched refs:__y (Results 1 – 25 of 146) sorted by relevance

123456

/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++98/
H A Dtree.cc70 _Rb_tree_node_base* __y = __x->_M_parent; in local_Rb_tree_increment() local
71 while (__x == __y->_M_right) in local_Rb_tree_increment()
73 __x = __y; in local_Rb_tree_increment()
74 __y = __y->_M_parent; in local_Rb_tree_increment()
76 if (__x->_M_right != __y) in local_Rb_tree_increment()
77 __x = __y; in local_Rb_tree_increment()
102 _Rb_tree_node_base* __y = __x->_M_left; in local_Rb_tree_decrement() local
103 while (__y->_M_right != 0) in local_Rb_tree_decrement()
104 __y = __y->_M_right; in local_Rb_tree_decrement()
105 __x = __y; in local_Rb_tree_decrement()
[all …]
H A Dlist-aux.cc45 swap(_List_node_base& __x, _List_node_base& __y) throw ();
62 _List_node_base::swap(_List_node_base& __x, _List_node_base& __y) throw() in swap() argument
66 if ( __y._M_next != &__y ) in swap()
69 std::swap(__x._M_next,__y._M_next); in swap()
70 std::swap(__x._M_prev,__y._M_prev); in swap()
72 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
77 __y._M_next = __x._M_next; in swap()
78 __y._M_prev = __x._M_prev; in swap()
79 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
83 else if ( __y._M_next != &__y ) in swap()
[all …]
H A Dlist.cc61 _List_node_base& __y) _GLIBCXX_USE_NOEXCEPT in swap() argument
65 if ( __y._M_next != &__y ) in swap()
68 std::swap(__x._M_next,__y._M_next); in swap()
69 std::swap(__x._M_prev,__y._M_prev); in swap()
71 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
76 __y._M_next = __x._M_next; in swap()
77 __y._M_prev = __x._M_prev; in swap()
78 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
82 else if ( __y._M_next != &__y ) in swap()
85 __x._M_next = __y._M_next; in swap()
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++98/
H A Dtree.cc70 _Rb_tree_node_base* __y = __x->_M_parent; in local_Rb_tree_increment() local
71 while (__x == __y->_M_right) in local_Rb_tree_increment()
73 __x = __y; in local_Rb_tree_increment()
74 __y = __y->_M_parent; in local_Rb_tree_increment()
76 if (__x->_M_right != __y) in local_Rb_tree_increment()
77 __x = __y; in local_Rb_tree_increment()
102 _Rb_tree_node_base* __y = __x->_M_left; in local_Rb_tree_decrement() local
103 while (__y->_M_right != 0) in local_Rb_tree_decrement()
104 __y = __y->_M_right; in local_Rb_tree_decrement()
105 __x = __y; in local_Rb_tree_decrement()
[all …]
H A Dcompatibility-list.cc45 swap(_List_node_base& __x, _List_node_base& __y) throw ();
62 _List_node_base::swap(_List_node_base& __x, _List_node_base& __y) throw() in swap() argument
66 if ( __y._M_next != &__y ) in swap()
69 std::swap(__x._M_next,__y._M_next); in swap()
70 std::swap(__x._M_prev,__y._M_prev); in swap()
72 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
77 __y._M_next = __x._M_next; in swap()
78 __y._M_prev = __x._M_prev; in swap()
79 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
83 else if ( __y._M_next != &__y ) in swap()
[all …]
H A Dlist.cc61 _List_node_base& __y) _GLIBCXX_USE_NOEXCEPT in swap() argument
65 if ( __y._M_next != &__y ) in swap()
68 std::swap(__x._M_next,__y._M_next); in swap()
69 std::swap(__x._M_prev,__y._M_prev); in swap()
71 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
76 __y._M_next = __x._M_next; in swap()
77 __y._M_prev = __x._M_prev; in swap()
78 __y._M_next->_M_prev = __y._M_prev->_M_next = &__y; in swap()
82 else if ( __y._M_next != &__y ) in swap()
85 __x._M_next = __y._M_next; in swap()
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Dbeta_function.tcc75 __beta_gamma(_Tp __x, _Tp __y) in __beta_gamma() argument
80 if (__x > __y) in __beta_gamma()
83 / std::tr1::tgamma(__x + __y); in __beta_gamma()
84 __bet *= std::tr1::tgamma(__y); in __beta_gamma()
88 __bet = std::tr1::tgamma(__y) in __beta_gamma()
89 / std::tr1::tgamma(__x + __y); in __beta_gamma()
93 if (__x > __y) in __beta_gamma()
95 __bet = __gamma(__x) / __gamma(__x + __y); in __beta_gamma()
96 __bet *= __gamma(__y); in __beta_gamma()
100 __bet = __gamma(__y) / __gamma(__x + __y); in __beta_gamma()
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Dbeta_function.tcc81 __beta_gamma(_Tp __x, _Tp __y) in __beta_gamma() argument
86 if (__x > __y) in __beta_gamma()
89 / _GLIBCXX_MATH_NS::tgamma(__x + __y); in __beta_gamma()
90 __bet *= _GLIBCXX_MATH_NS::tgamma(__y); in __beta_gamma()
94 __bet = _GLIBCXX_MATH_NS::tgamma(__y) in __beta_gamma()
95 / _GLIBCXX_MATH_NS::tgamma(__x + __y); in __beta_gamma()
99 if (__x > __y) in __beta_gamma()
101 __bet = __gamma(__x) / __gamma(__x + __y); in __beta_gamma()
102 __bet *= __gamma(__y); in __beta_gamma()
106 __bet = __gamma(__y) / __gamma(__x + __y); in __beta_gamma()
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dfs_fwd.h89 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
93 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
97 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
101 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
105 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
109 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
120 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
121 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY()
124 operator|=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
125 { return __x = __x | __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_iterator.h303 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
304 { return __x.base() == __y.base(); } in _GLIBCXX_VISIBILITY()
309 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
310 { return __y.base() < __x.base(); } in _GLIBCXX_VISIBILITY()
315 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
316 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
321 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
322 { return __y < __x; } in _GLIBCXX_VISIBILITY()
327 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
328 { return !(__y < __x); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_pair.h311 constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY()
312 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
318 explicit constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY()
319 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
325 constexpr pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY()
326 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
332 explicit pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY()
333 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
341 constexpr pair(_U1&& __x, _U2&& __y) in _GLIBCXX_VISIBILITY()
342 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_before.h189 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
190 { return __x + __y; } in _GLIBCXX_VISIBILITY()
196 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
197 { return __x - __y; } in _GLIBCXX_VISIBILITY()
203 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
204 { return __x * __y; } in _GLIBCXX_VISIBILITY()
210 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
211 { return __x / __y; } in _GLIBCXX_VISIBILITY()
217 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
218 { return __x % __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_relops.h87 operator!=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
88 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
100 operator>(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
101 { return __y < __x; } in _GLIBCXX_VISIBILITY()
113 operator<=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
114 { return !(__y < __x); } in _GLIBCXX_VISIBILITY()
126 operator>=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
127 { return !(__x < __y); } in _GLIBCXX_VISIBILITY()
H A Dstl_function.h171 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
172 { return __x + __y; } in _GLIBCXX_VISIBILITY()
181 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
182 { return __x - __y; } in _GLIBCXX_VISIBILITY()
191 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
192 { return __x * __y; } in _GLIBCXX_VISIBILITY()
201 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
202 { return __x / __y; } in _GLIBCXX_VISIBILITY()
211 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
212 { return __x % __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_stack.h305 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
306 { return __x.c == __y.c; } in _GLIBCXX_VISIBILITY()
323 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
324 { return __x.c < __y.c; } in _GLIBCXX_VISIBILITY()
329 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
330 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
335 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
336 { return __y < __x; } in _GLIBCXX_VISIBILITY()
341 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
342 { return !(__y < __x); } in _GLIBCXX_VISIBILITY()
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dstl_iterator.h294 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
295 { return __x.base() == __y.base(); } in _GLIBCXX_VISIBILITY()
300 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
301 { return __y.base() < __x.base(); } in _GLIBCXX_VISIBILITY()
306 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
307 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
312 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
313 { return __y < __x; } in _GLIBCXX_VISIBILITY()
318 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY()
319 { return !(__y < __x); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_pair.h125 constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY()
126 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
130 constexpr pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY()
131 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
136 constexpr pair(_U1&& __x, _U2&& __y) in _GLIBCXX_VISIBILITY()
137 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
206 operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) in _GLIBCXX_VISIBILITY()
207 { return __x.first == __y.first && __x.second == __y.second; } in _GLIBCXX_VISIBILITY()
212 operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) in _GLIBCXX_VISIBILITY()
213 { return __x.first < __y.first in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_function.h145 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
146 { return __x + __y; } in _GLIBCXX_VISIBILITY()
154 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
155 { return __x - __y; } in _GLIBCXX_VISIBILITY()
163 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
164 { return __x * __y; } in _GLIBCXX_VISIBILITY()
172 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
173 { return __x / __y; } in _GLIBCXX_VISIBILITY()
181 operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
182 { return __x % __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_stack.h242 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
243 { return __x.c == __y.c; } in _GLIBCXX_VISIBILITY()
260 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
261 { return __x.c < __y.c; } in _GLIBCXX_VISIBILITY()
266 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
267 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
272 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
273 { return __y < __x; } in _GLIBCXX_VISIBILITY()
278 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY()
279 { return !(__y < __x); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_before.h190 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
191 { return __x + __y; } in _GLIBCXX_VISIBILITY()
197 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
198 { return __x - __y; } in _GLIBCXX_VISIBILITY()
204 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
205 { return __x * __y; } in _GLIBCXX_VISIBILITY()
211 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
212 { return __x / __y; } in _GLIBCXX_VISIBILITY()
218 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY()
219 { return __x % __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_relops.h88 operator!=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
89 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
101 operator>(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
102 { return __y < __x; } in _GLIBCXX_VISIBILITY()
114 operator<=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
115 { return !(__y < __x); } in _GLIBCXX_VISIBILITY()
127 operator>=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY()
128 { return !(__x < __y); } in _GLIBCXX_VISIBILITY()
H A Dstl_tree.h310 const _Rb_tree_const_iterator<_Val>& __y) in _GLIBCXX_VISIBILITY()
311 { return __x._M_node == __y._M_node; } in _GLIBCXX_VISIBILITY()
316 const _Rb_tree_const_iterator<_Val>& __y) in _GLIBCXX_VISIBILITY()
317 { return __x._M_node != __y._M_node; } in _GLIBCXX_VISIBILITY()
576 _M_insert_(_Const_Base_ptr __x, _Const_Base_ptr __y, _Arg&& __v); in _GLIBCXX_VISIBILITY()
580 _M_insert_lower(_Base_ptr __x, _Base_ptr __y, _Arg&& __v); in _GLIBCXX_VISIBILITY()
587 _M_insert_(_Const_Base_ptr __x, _Const_Base_ptr __y, in _GLIBCXX_VISIBILITY()
593 _M_insert_lower(_Base_ptr __x, _Base_ptr __y, const value_type& __v); in _GLIBCXX_VISIBILITY()
606 _M_lower_bound(_Link_type __x, _Link_type __y, in _GLIBCXX_VISIBILITY()
610 _M_lower_bound(_Const_Link_type __x, _Const_Link_type __y, in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_deque.h129 _Deque_iterator(_Tp* __x, _Map_pointer __y) in _GLIBCXX_VISIBILITY()
130 : _M_cur(__x), _M_first(*__y), in _GLIBCXX_VISIBILITY()
131 _M_last(*__y + _S_buffer_size()), _M_node(__y) { } in _GLIBCXX_VISIBILITY()
249 const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) in _GLIBCXX_VISIBILITY()
250 { return __x._M_cur == __y._M_cur; } in _GLIBCXX_VISIBILITY()
256 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) in _GLIBCXX_VISIBILITY()
257 { return __x._M_cur == __y._M_cur; } in _GLIBCXX_VISIBILITY()
262 const _Deque_iterator<_Tp, _Ref, _Ptr>& __y) in _GLIBCXX_VISIBILITY()
263 { return !(__x == __y); } in _GLIBCXX_VISIBILITY()
269 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) in _GLIBCXX_VISIBILITY()
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/c_global/
H A Dcmath144 atan2(float __y, float __x)
145 { return __builtin_atan2f(__y, __x); }
148 atan2(long double __y, long double __x)
149 { return __builtin_atan2l(__y, __x); }
155 atan2(_Tp __y, _Up __x)
158 return atan2(__type(__y), __type(__x));
279 fmod(float __x, float __y)
280 { return __builtin_fmodf(__x, __y); }
283 fmod(long double __x, long double __y)
284 { return __builtin_fmodl(__x, __y); }
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/c_global/
H A Dcmath166 atan2(float __y, float __x)
167 { return __builtin_atan2f(__y, __x); }
170 atan2(long double __y, long double __x)
171 { return __builtin_atan2l(__y, __x); }
177 atan2(_Tp __y, _Up __x)
180 return atan2(__type(__y), __type(__x));
301 fmod(float __x, float __y)
302 { return __builtin_fmodf(__x, __y); }
305 fmod(long double __x, long double __y)
306 { return __builtin_fmodl(__x, __y); }
[all …]

123456