HomeSort by relevance Sort by last modified time
    Searched full:__x (Results 251 - 275 of 1860) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/
avx2intrin.h 35 _mm256_mpsadbw_epu8 (__m256i __X, __m256i __Y, const int __M)
37 return (__m256i) __builtin_ia32_mpsadbw256 ((__v32qi)__X,
199 _mm256_blendv_epi8 (__m256i __X, __m256i __Y, __m256i __M)
201 return (__m256i) __builtin_ia32_pblendvb256 ((__v32qi)__X,
209 _mm256_blend_epi16 (__m256i __X, __m256i __Y, const int __M)
211 return (__m256i) __builtin_ia32_pblendw256 ((__v16hi)__X,
282 _mm256_hadd_epi16 (__m256i __X, __m256i __Y)
284 return (__m256i) __builtin_ia32_phaddw256 ((__v16hi)__X,
290 _mm256_hadd_epi32 (__m256i __X, __m256i __Y)
292 return (__m256i) __builtin_ia32_phaddd256 ((__v8si)__X, (__v8si)__Y)
    [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/
avx2intrin.h 35 _mm256_mpsadbw_epu8 (__m256i __X, __m256i __Y, const int __M)
37 return (__m256i) __builtin_ia32_mpsadbw256 ((__v32qi)__X,
199 _mm256_blendv_epi8 (__m256i __X, __m256i __Y, __m256i __M)
201 return (__m256i) __builtin_ia32_pblendvb256 ((__v32qi)__X,
209 _mm256_blend_epi16 (__m256i __X, __m256i __Y, const int __M)
211 return (__m256i) __builtin_ia32_pblendw256 ((__v16hi)__X,
282 _mm256_hadd_epi16 (__m256i __X, __m256i __Y)
284 return (__m256i) __builtin_ia32_phaddw256 ((__v16hi)__X,
290 _mm256_hadd_epi32 (__m256i __X, __m256i __Y)
292 return (__m256i) __builtin_ia32_phaddd256 ((__v8si)__X, (__v8si)__Y)
    [all...]
  /external/stlport/stlport/stl/
_queue.h 100 void push(const value_type& __x) { c.push_back(__x); }
105 void _M_swap_workaround(_Self& __x) {
107 c = __x.c;
108 __x.c = __tmp;
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
129 return __x._Get_s() < __y._Get_s();
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {
    [all...]
_tree.h 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {
94 while (__x->_M_left != 0) __x = __x->_M_left;
95 return __x;
98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {
99 while (__x->_M_right != 0) __x = __x->_M_right;
100 return __x;
493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local
550 _Base_ptr __x = _M_root(); \/\/ Current node. local
569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
    [all...]
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_queue.h 100 void push(const value_type& __x) { c.push_back(__x); }
105 void _M_swap_workaround(_Self& __x) {
107 c = __x.c;
108 __x.c = __tmp;
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
129 return __x._Get_s() < __y._Get_s();
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {
    [all...]
_tree.h 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {
94 while (__x->_M_left != 0) __x = __x->_M_left;
95 return __x;
98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {
99 while (__x->_M_right != 0) __x = __x->_M_right;
100 return __x;
493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local
550 _Base_ptr __x = _M_root(); \/\/ Current node. local
569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
    [all...]
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_queue.h 100 void push(const value_type& __x) { c.push_back(__x); }
105 void _M_swap_workaround(_Self& __x) {
107 c = __x.c;
108 __x.c = __tmp;
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
129 return __x._Get_s() < __y._Get_s();
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {
    [all...]
_tree.h 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {
94 while (__x->_M_left != 0) __x = __x->_M_left;
95 return __x;
98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {
99 while (__x->_M_right != 0) __x = __x->_M_right;
100 return __x;
493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local
550 _Base_ptr __x = _M_root(); \/\/ Current node. local
569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_queue.h 100 void push(const value_type& __x) { c.push_back(__x); }
105 void _M_swap_workaround(_Self& __x) {
107 c = __x.c;
108 __x.c = __tmp;
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
129 return __x._Get_s() < __y._Get_s();
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {
    [all...]
_tree.h 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {
94 while (__x->_M_left != 0) __x = __x->_M_left;
95 return __x;
98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {
99 while (__x->_M_right != 0) __x = __x->_M_right;
100 return __x;
493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local
550 _Base_ptr __x = _M_root(); \/\/ Current node. local
569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_queue.h 100 void push(const value_type& __x) { c.push_back(__x); }
105 void _M_swap_workaround(_Self& __x) {
107 c = __x.c;
108 __x.c = __tmp;
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
129 return __x._Get_s() < __y._Get_s();
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {
    [all...]
_tree.h 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {
94 while (__x->_M_left != 0) __x = __x->_M_left;
95 return __x;
98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {
99 while (__x->_M_right != 0) __x = __x->_M_right;
100 return __x;
493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local
550 _Base_ptr __x = _M_root(); \/\/ Current node. local
569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_queue.h 100 void push(const value_type& __x) { c.push_back(__x); }
105 void _M_swap_workaround(_Self& __x) {
107 c = __x.c;
108 __x.c = __tmp;
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
123 return __x._Get_s() == __y._Get_s();
128 operator<(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARGS >& __y) {
129 return __x._Get_s() < __y._Get_s();
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {
    [all...]
_tree.h 93 static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {
94 while (__x->_M_left != 0) __x = __x->_M_left;
95 return __x;
98 static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {
99 while (__x->_M_right != 0) __x = __x->_M_right;
100 return __x;
493 _Base_ptr __x = _Rb_global_inst::_Rebalance_for_erase(__pos._M_node, local
550 _Base_ptr __x = _M_root(); \/\/ Current node. local
569 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
583 _Base_ptr __x = _M_root(); \/* Current node. *\/ local
    [all...]
  /external/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /external/clang/lib/Headers/
bmi2intrin.h 36 _bzhi_u32(unsigned int __X, unsigned int __Y)
38 return __builtin_ia32_bzhi_si(__X, __Y);
42 _pdep_u32(unsigned int __X, unsigned int __Y)
44 return __builtin_ia32_pdep_si(__X, __Y);
48 _pext_u32(unsigned int __X, unsigned int __Y)
50 return __builtin_ia32_pext_si(__X, __Y);
56 _bzhi_u64(unsigned long long __X, unsigned long long __Y)
58 return __builtin_ia32_bzhi_di(__X, __Y);
62 _pdep_u64(unsigned long long __X, unsigned long long __Y)
64 return __builtin_ia32_pdep_di(__X, __Y)
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-array.cpp 5 #define __CONCAT(__X, __Y) __CONCAT1(__X, __Y)
6 #define __CONCAT1(__X, __Y) __X ## __Y
  /external/stlport/stlport/stl/pointers/
_set.h 193 set(const _Self& __x) : _M_t(__x._M_t) {}
200 _Self& operator=(const _Self& __x) {
201 _M_t = __x._M_t;
222 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
224 void _M_swap_workaround(_Self& __x) { swap(__x); }
228 pair<iterator,bool> insert(const value_type& __x) {
229 pair<base_iterator, bool> ret = _M_t.insert_unique(cast_traits::to_storage_type_cref(__x));
    [all...]

Completed in 167 milliseconds

<<11121314151617181920>>