Searched defs:__y (Results 176 - 200 of 573) sorted by relevance

1234567891011>>

/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
H A Dstl_stack.h235 * @param __y A %stack of the same type as @a __x.
246 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
247 { return __x.c == __y.c; }
252 * @param __y A %stack of the same type as @a x.
253 * @return True iff @a x is lexicographically less than @a __y.
264 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
265 { return __x.c < __y.c; }
270 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
271 { return !(__x == __y); }
276 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
282 operator <=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
288 operator >=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
[all...]
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
H A D_complex.h44 complex(const value_type& __x, const value_type& __y) argument
45 : _M_re(__x), _M_im(__y) {}
185 complex(value_type __x = 0.0f, value_type __y = 0.0f)
186 : _M_re(__x), _M_im(__y) {}
324 complex(value_type __x = 0.0, value_type __y = 0.0)
325 : _M_re(__x), _M_im(__y) {}
463 complex(value_type __x = 0.0l, value_type __y = 0.0l)
464 : _M_re(__x), _M_im(__y) {}
H A D_istreambuf_iterator.h111 const istreambuf_iterator<_CharT, _Traits>& __y) {
112 return __x.equal(__y);
119 const istreambuf_iterator<_CharT, _Traits>& __y) {
120 return !__x.equal(__y);
110 operator ==(const istreambuf_iterator<_CharT, _Traits>& __x, const istreambuf_iterator<_CharT, _Traits>& __y) argument
118 operator !=(const istreambuf_iterator<_CharT, _Traits>& __x, const istreambuf_iterator<_CharT, _Traits>& __y) argument
H A D_iterator_old.h136 Reference__, _Distance>& __y)
137 { return __x.base() == __y.base(); }
144 const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __y)
145 { return !(__x == __y); }
243 Reference__, _Distance>& __y)
245 return __x.base() == __y.base();
254 Reference__, _Distance>& __y)
256 return __y.base() < __x.base();
267 Reference__, _Distance>& __y) {
268 return !(__x == __y);
132 operator ==( const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>& __x, const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>& __y) argument
142 operator !=( const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __x, const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __y) argument
240 operator ==(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
251 operator <(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
264 operator !=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
274 operator >(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
284 operator <=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
294 operator >=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
306 operator -(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
[all...]
H A D_pair.h81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
82 { return __x.first == __y.first && __x.second == __y.second; }
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
93 { return !(__x == __y); }
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
100 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
104 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
110 make_pair(_T1 const& __x, _T2 const (&__y)[_Sz]) argument
115 make_pair(_T1 const (&__x)[_Sz], _T2 const& __y) argument
120 make_pair(_T1 const (&__x)[_Sz1], _T2 const (&__y)[_Sz2]) argument
128 make_pair(_T1 __x, _T2 __y) argument
137 operator !=(const _Tp& __x, const _Tp& __y) argument
141 operator >(const _Tp& __x, const _Tp& __y) argument
145 operator <=(const _Tp& __x, const _Tp& __y) argument
149 operator >=(const _Tp& __x, const _Tp& __y) argument
[all...]
H A D_queue.h122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) { argument
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) { argument
129 return __x._Get_s() < __y._Get_s();
H A D_stream_iterator.h213 const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y)
214 { return __x._M_equal(__y); }
220 const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y)
221 { return !__x._M_equal(__y); }
212 operator ==(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x, const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) argument
219 operator !=(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x, const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) argument
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
H A Dstl_queue.h258 * @param __y A %queue of the same type as @a __x.
268 operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
269 { return __x.c == __y.c; }
274 * @param __y A %queue of the same type as @a x.
275 * @return True iff @a __x is lexicographically less than @a __y.
286 operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
287 { return __x.c < __y.c; }
292 operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
293 { return !(__x == __y); }
298 operator>(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
304 operator <=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
310 operator >=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
[all...]
H A Dstl_stack.h232 * @param __y A %stack of the same type as @a __x.
243 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
244 { return __x.c == __y.c; }
249 * @param __y A %stack of the same type as @a x.
250 * @return True iff @a x is lexicographically less than @a __y.
261 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
262 { return __x.c < __y.c; }
267 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
268 { return !(__x == __y); }
273 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
279 operator <=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
285 operator >=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
[all...]
H A Dunique_ptr.h618 unique_ptr<_Tp, _Dp>& __y) noexcept
619 { __x.swap(__y); }
625 const unique_ptr<_Up, _Ep>& __y)
626 { return __x.get() == __y.get(); }
642 const unique_ptr<_Up, _Ep>& __y)
643 { return __x.get() != __y.get(); }
659 const unique_ptr<_Up, _Ep>& __y)
664 return std::less<_CT>()(__x.get(), __y.get());
683 const unique_ptr<_Up, _Ep>& __y)
684 { return !(__y < __
624 operator ==(const unique_ptr<_Tp, _Dp>& __x, const unique_ptr<_Up, _Ep>& __y) argument
641 operator !=(const unique_ptr<_Tp, _Dp>& __x, const unique_ptr<_Up, _Ep>& __y) argument
658 operator <(const unique_ptr<_Tp, _Dp>& __x, const unique_ptr<_Up, _Ep>& __y) argument
682 operator <=(const unique_ptr<_Tp, _Dp>& __x, const unique_ptr<_Up, _Ep>& __y) argument
699 operator >(const unique_ptr<_Tp, _Dp>& __x, const unique_ptr<_Up, _Ep>& __y) argument
718 operator >=(const unique_ptr<_Tp, _Dp>& __x, const unique_ptr<_Up, _Ep>& __y) argument
[all...]
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();
/prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
H A D_complex.h44 complex(const value_type& __x, const value_type& __y) argument
45 : _M_re(__x), _M_im(__y) {}
185 complex(value_type __x = 0.0f, value_type __y = 0.0f)
186 : _M_re(__x), _M_im(__y) {}
324 complex(value_type __x = 0.0, value_type __y = 0.0)
325 : _M_re(__x), _M_im(__y) {}
463 complex(value_type __x = 0.0l, value_type __y = 0.0l)
464 : _M_re(__x), _M_im(__y) {}
H A D_istreambuf_iterator.h111 const istreambuf_iterator<_CharT, _Traits>& __y) {
112 return __x.equal(__y);
119 const istreambuf_iterator<_CharT, _Traits>& __y) {
120 return !__x.equal(__y);
110 operator ==(const istreambuf_iterator<_CharT, _Traits>& __x, const istreambuf_iterator<_CharT, _Traits>& __y) argument
118 operator !=(const istreambuf_iterator<_CharT, _Traits>& __x, const istreambuf_iterator<_CharT, _Traits>& __y) argument
H A D_iterator_old.h136 Reference__, _Distance>& __y)
137 { return __x.base() == __y.base(); }
144 const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __y)
145 { return !(__x == __y); }
243 Reference__, _Distance>& __y)
245 return __x.base() == __y.base();
254 Reference__, _Distance>& __y)
256 return __y.base() < __x.base();
267 Reference__, _Distance>& __y) {
268 return !(__x == __y);
132 operator ==( const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>& __x, const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>& __y) argument
142 operator !=( const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __x, const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __y) argument
240 operator ==(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
251 operator <(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
264 operator !=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
274 operator >(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
284 operator <=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
294 operator >=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
306 operator -(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
[all...]
H A D_pair.h81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
82 { return __x.first == __y.first && __x.second == __y.second; }
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
93 { return !(__x == __y); }
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
100 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
104 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
110 make_pair(_T1 const& __x, _T2 const (&__y)[_Sz]) argument
115 make_pair(_T1 const (&__x)[_Sz], _T2 const& __y) argument
120 make_pair(_T1 const (&__x)[_Sz1], _T2 const (&__y)[_Sz2]) argument
128 make_pair(_T1 __x, _T2 __y) argument
137 operator !=(const _Tp& __x, const _Tp& __y) argument
141 operator >(const _Tp& __x, const _Tp& __y) argument
145 operator <=(const _Tp& __x, const _Tp& __y) argument
149 operator >=(const _Tp& __x, const _Tp& __y) argument
[all...]
H A D_queue.h122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) { argument
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) { argument
129 return __x._Get_s() < __y._Get_s();
H A D_stream_iterator.h213 const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y)
214 { return __x._M_equal(__y); }
220 const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y)
221 { return !__x._M_equal(__y); }
212 operator ==(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x, const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) argument
219 operator !=(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x, const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) argument
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
H A Dstl_queue.h261 * @param __y A %queue of the same type as @a __x.
271 operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
272 { return __x.c == __y.c; }
277 * @param __y A %queue of the same type as @a x.
278 * @return True iff @a __x is lexicographically less than @a __y.
289 operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
290 { return __x.c < __y.c; }
295 operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
296 { return !(__x == __y); }
301 operator>(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
307 operator <=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
313 operator >=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
[all...]
H A Dstl_stack.h235 * @param __y A %stack of the same type as @a __x.
246 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
247 { return __x.c == __y.c; }
252 * @param __y A %stack of the same type as @a x.
253 * @return True iff @a x is lexicographically less than @a __y.
264 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
265 { return __x.c < __y.c; }
270 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
271 { return !(__x == __y); }
276 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
282 operator <=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
288 operator >=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/32/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/
H A Dopt_random.h193 result_type __x, __y, __r2; local
201 __y = result_type(2.0) * __aurng() - 1.0;
202 __r2 = __x * __x + __y * __y;
209 *__f = __y * __mult * __param.stddev() + __param.mean();

Completed in 483 milliseconds

1234567891011>>