Home
last modified time | relevance | path

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

/external/speex/libspeex/
Dcb_search_sse.h42 } __u; in _spx_mm_getr_ps() local
44 __u.__v = U; in _spx_mm_getr_ps()
46 *__Z = __u.__a[0]; in _spx_mm_getr_ps()
47 *__Y = __u.__a[1]; in _spx_mm_getr_ps()
48 *__X = __u.__a[2]; in _spx_mm_getr_ps()
49 *__W = __u.__a[3]; in _spx_mm_getr_ps()
/external/llvm/test/CodeGen/X86/
Dmovmsk.ll12 %__u.i = alloca %0, align 8
14 %1 = bitcast %0* %__u.i to i8*
16 %__f.i = getelementptr inbounds %0* %__u.i, i64 0, i32 0
30 %__u.i = alloca %0, align 8
33 %1 = bitcast %0* %__u.i to i8*
35 %__f.i = getelementptr inbounds %0* %__u.i, i64 0, i32 0
49 %__u.i = alloca %union.anon, align 4
51 %1 = bitcast %union.anon* %__u.i to i8*
53 %__f.i = getelementptr inbounds %union.anon* %__u.i, i64 0, i32 0
66 %__u.i = alloca %union.anon, align 4
[all …]
/external/clang/test/CodeGen/
Dunion.c19 unsigned int __u; in f2() member
20 }__u; in f2() local
21 return (int)(__u.__u >> 31); in f2()
/external/libcxx/include/
D__hash_table867 __hash_table(const __hash_table& __u);
868 __hash_table(const __hash_table& __u, const allocator_type& __a);
870 __hash_table(__hash_table&& __u)
877 __hash_table(__hash_table&& __u, const allocator_type& __a);
881 __hash_table& operator=(const __hash_table& __u);
883 __hash_table& operator=(__hash_table&& __u)
993 void swap(__hash_table& __u)
1094 void __copy_assign_alloc(const __hash_table& __u)
1095 {__copy_assign_alloc(__u, integral_constant<bool,
1097 void __copy_assign_alloc(const __hash_table& __u, true_type);
[all …]
Dunordered_set408 unordered_set(const unordered_set& __u);
409 unordered_set(const unordered_set& __u, const allocator_type& __a);
411 unordered_set(unordered_set&& __u)
413 unordered_set(unordered_set&& __u, const allocator_type& __a);
436 unordered_set& operator=(const unordered_set& __u)
438 __table_ = __u.__table_;
442 unordered_set& operator=(unordered_set&& __u)
548 void swap(unordered_set& __u)
550 {__table_.swap(__u.__table_);}
693 const unordered_set& __u)
[all …]
Dshared_mutex291 shared_lock(shared_lock&& __u) noexcept
292 : __m_(__u.__m_),
293 __owns_(__u.__owns_)
295 __u.__m_ = nullptr;
296 __u.__owns_ = false;
300 shared_lock& operator=(shared_lock&& __u) noexcept
306 __m_ = __u.__m_;
307 __owns_ = __u.__owns_;
308 __u.__m_ = nullptr;
309 __u.__owns_ = false;
[all …]
D__mutex_base140 unique_lock(unique_lock&& __u) _NOEXCEPT
141 : __m_(__u.__m_), __owns_(__u.__owns_)
142 {__u.__m_ = nullptr; __u.__owns_ = false;}
144 unique_lock& operator=(unique_lock&& __u) _NOEXCEPT
148 __m_ = __u.__m_;
149 __owns_ = __u.__owns_;
150 __u.__m_ = nullptr;
151 __u.__owns_ = false;
168 void swap(unique_lock& __u) _NOEXCEPT
170 _VSTD::swap(__m_, __u.__m_);
[all …]
Dunordered_map788 unordered_map(const unordered_map& __u);
789 unordered_map(const unordered_map& __u, const allocator_type& __a);
791 unordered_map(unordered_map&& __u)
793 unordered_map(unordered_map&& __u, const allocator_type& __a);
829 unordered_map& operator=(const unordered_map& __u)
832 __table_ = __u.__table_;
834 if (this != &__u) {
836 __table_.hash_function() = __u.__table_.hash_function();
837 __table_.key_eq() = __u.__table_.key_eq();
838 __table_.max_load_factor() = __u.__table_.max_load_factor();
[all …]
Dfunctional506 auto operator()(_T1&& __t, _T2&& __u) const
507 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
531 auto operator()(_T1&& __t, _T2&& __u) const
532 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
556 auto operator()(_T1&& __t, _T2&& __u) const
557 { return _VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u); }
581 auto operator()(_T1&& __t, _T2&& __u) const
582 { return _VSTD::forward<_T1>(__t) / _VSTD::forward<_T2>(__u); }
606 auto operator()(_T1&& __t, _T2&& __u) const
607 { return _VSTD::forward<_T1>(__t) % _VSTD::forward<_T2>(__u); }
[all …]
Drandom2012 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2054 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2072 static_assert(__u <= __w, "mersenne_twister_engine invalid parameters");
2093 static _LIBCPP_CONSTEXPR const size_t tempering_u = __u;
2220 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2223 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f…
2226 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2229 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f…
2232 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2235 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f…
[all …]
Dmemory2514 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
2515 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
2518 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2530 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
2543 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
2545 reset(__u.release());
2546 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
2559 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
2561 reset(__u.release());
2562 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
[all …]
Dtuple405 _Up&&... __u)
408 __tuple_leaf<_Uf, _Tf>(_VSTD::forward<_Up>(__u))...,
419 _Up&&... __u) :
421 _VSTD::forward<_Up>(__u))...,
549 tuple(_Up&&... __u)
563 _VSTD::forward<_Up>(__u)...) {}
590 tuple(_Up&&... __u)
604 _VSTD::forward<_Up>(__u)...) {}
621 tuple(allocator_arg_t, const _Alloc& __a, _Up&&... __u)
627 _VSTD::forward<_Up>(__u)...) {}
[all …]
Diterator551 … template <class _Up> _LIBCPP_INLINE_VISIBILITY reverse_iterator(const reverse_iterator<_Up>& __u)
552 : __t(__u.base()), current(__u.base()) {}
948 template <class _Up> _LIBCPP_INLINE_VISIBILITY move_iterator(const move_iterator<_Up>& __u)
949 : __i(__u.base()) {}
1130 template <class _Up> _LIBCPP_INLINE_VISIBILITY __wrap_iter(const __wrap_iter<_Up>& __u,
1132 : __i(__u.base())
1135 __get_db()->__iterator_copy(this, &__u);
Darray140 _LIBCPP_INLINE_VISIBILITY void fill(const value_type& __u)
141 {_VSTD::fill_n(__elems_, _Size, __u);}
D__functional_base72 auto operator()(_T1&& __t, _T2&& __u) const
73 { return _VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u); }
Dtype_traits1447 static _Up&& __u();
1450 static _Up __u();
1453 typedef typename remove_reference<decltype(true ? __t() : __u())>::type type;
1471 static _Up&& __u();
1474 typedef typename decay<decltype(__f() ? __t() : __u())>::type type;
3390 static auto __test(_Up* __u)
3391 -> typename __select_2nd<decltype(__u->operator&()), true_type>::type;
Dalgorithm2922 _Engine_result_type __u;
2925 __u = __e_() - _Engine::min();
2926 } while (__u >= __y0_);
2931 _Sp += __u & __mask0_;
2935 _Engine_result_type __u;
2938 __u = __e_() - _Engine::min();
2939 } while (__u >= __y1_);
2944 _Sp += __u & __mask1_;
3030 _UIntType __u;
3033 __u = __e();
[all …]
Dvector612 void assign(size_type __n, const_reference __u);
1369 vector<_Tp, _Allocator>::assign(size_type __n, const_reference __u)
1374 _VSTD::fill_n(this->__begin_, _VSTD::min(__n, __s), __u);
1376 __construct_at_end(__n - __s, __u);
1384 __construct_at_end(__n, __u);
/external/clang/lib/Headers/
Demmintrin.h472 double __u; in _mm_load1_pd() member
474 double __u = ((struct __mm_load1_pd_struct*)__dp)->__u; in _mm_load1_pd() local
475 return (__m128d){ __u, __u }; in _mm_load1_pd()
483 __m128d __u = *(__m128d*)__dp; in _mm_loadr_pd() local
484 return __builtin_shufflevector(__u, __u, 1, 0); in _mm_loadr_pd()
500 double __u; in _mm_load_sd() member
502 double __u = ((struct __mm_load_sd_struct*)__dp)->__u; in _mm_load_sd() local
503 return (__m128d){ __u, 0 }; in _mm_load_sd()
510 double __u; in _mm_loadh_pd() member
512 double __u = ((struct __mm_loadh_pd_struct*)__dp)->__u; in _mm_loadh_pd() local
[all …]
Dxmmintrin.h517 __mm_loadh_pi_v2f32 __u; in _mm_loadh_pi() member
519 __mm_loadh_pi_v2f32 __b = ((struct __mm_loadh_pi_struct*)__p)->__u; in _mm_loadh_pi()
529 __mm_loadl_pi_v2f32 __u; in _mm_loadl_pi() member
531 __mm_loadl_pi_v2f32 __b = ((struct __mm_loadl_pi_struct*)__p)->__u; in _mm_loadl_pi()
540 float __u; in _mm_load_ss() member
542 float __u = ((struct __mm_load_ss_struct*)__p)->__u; in _mm_load_ss() local
543 return (__m128){ __u, 0, 0, 0 }; in _mm_load_ss()
550 float __u; in _mm_load1_ps() member
552 float __u = ((struct __mm_load1_ps_struct*)__p)->__u; in _mm_load1_ps() local
553 return (__m128){ __u, __u, __u, __u }; in _mm_load1_ps()
[all …]
/external/libcxx/include/ext/
Dhash_set257 hash_set(const hash_set& __u);
298 void swap(hash_set& __u) {__table_.swap(__u.__table_);}
379 const hash_set& __u)
380 : __table_(__u.__table_)
382 __table_.rehash(__u.bucket_count());
383 insert(__u.begin(), __u.end());
478 hash_multiset(const hash_multiset& __u);
518 void swap(hash_multiset& __u) {__table_.swap(__u.__table_);}
600 const hash_multiset& __u)
601 : __table_(__u.__table_)
[all …]
Dhash_map543 hash_map(const hash_map& __u);
584 void swap(hash_map& __u) {__table_.swap(__u.__table_);}
674 const hash_map& __u)
675 : __table_(__u.__table_)
677 __table_.rehash(__u.bucket_count());
678 insert(__u.begin(), __u.end());
821 hash_multimap(const hash_multimap& __u);
861 void swap(hash_multimap& __u) {__table_.swap(__u.__table_);}
946 const hash_multimap& __u)
947 : __table_(__u.__table_)
[all …]
/external/llvm/test/Transforms/DeadStoreElimination/
DPartialStore.ll30 %__u = alloca { [3 x i32] }
31 %tmp.1 = bitcast { [3 x i32] }* %__u to double*
33 %tmp.4 = getelementptr { [3 x i32] }* %__u, i32 0, i32 0, i32 1
/external/e2fsprogs/config/
Dparse-types.sh7 s/typedef \(.*\) __u\([1-9]*\);/#define __U\2_TYPEDEF \1/
/external/clang/www/
Dlibstdc++4.4-clang0x.patch426 - swap(unique_ptr&& __u)
427 + swap(unique_ptr& __u)
430 swap(_M_t, __u._M_t);
435 - swap(unique_ptr&& __u)
436 + swap(unique_ptr& __u)
439 swap(_M_t, __u._M_t);