Home
last modified time | relevance | path

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

123

/external/clang/lib/Headers/
Darm_acle.h142 __clz(uint32_t __t) { in __clz() argument
143 return __builtin_clz(__t); in __clz()
147 __clzl(unsigned long __t) { in __clzl() argument
148 return __builtin_clzl(__t); in __clzl()
152 __clzll(uint64_t __t) { in __clzll() argument
153 return __builtin_clzll(__t); in __clzll()
158 __rev(uint32_t __t) { in __rev() argument
159 return __builtin_bswap32(__t); in __rev()
163 __revl(unsigned long __t) { in __revl() argument
165 return __builtin_bswap32(__t); in __revl()
[all …]
/external/libcxx/include/
D__split_buffer429 __split_buffer<value_type, __alloc_rr&> __t(__n, 0, __alloc());
430 __t.__construct_at_end(move_iterator<pointer>(__begin_),
432 _VSTD::swap(__first_, __t.__first_);
433 _VSTD::swap(__begin_, __t.__begin_);
434 _VSTD::swap(__end_, __t.__end_);
435 _VSTD::swap(__end_cap(), __t.__end_cap());
449 __split_buffer<value_type, __alloc_rr&> __t(size(), 0, __alloc());
450 __t.__construct_at_end(move_iterator<pointer>(__begin_),
452 __t.__end_ = __t.__begin_ + (__end_ - __begin_);
453 _VSTD::swap(__first_, __t.__first_);
[all …]
D__threading_support165 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t);
168 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
175 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t);
178 int __libcpp_thread_join(__libcpp_thread_t *__t);
181 int __libcpp_thread_detach(__libcpp_thread_t *__t);
316 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) {
317 return *__t == 0;
320 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
323 return pthread_create(__t, 0, __func, __arg);
331 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t)
[all …]
Dtuple225 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value))
226 : value(_VSTD::forward<_Tp>(__t))
232 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t)
233 : value(_VSTD::forward<_Tp>(__t))
239 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t)
240 : value(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t))
246 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t)
247 : value(_VSTD::forward<_Tp>(__t), __a)
251 __tuple_leaf(const __tuple_leaf& __t) = default;
252 __tuple_leaf(__tuple_leaf&& __t) = default;
[all …]
Dnumeric124 typename iterator_traits<_InputIterator>::value_type __t(*__first);
125 *__result = __t;
128 __t = __t + *__first;
129 *__result = __t;
143 typename iterator_traits<_InputIterator>::value_type __t(*__first);
144 *__result = __t;
147 __t = __binary_op(__t, *__first);
148 *__result = __t;
209 _Result operator()(_Source __t) const noexcept
211 if (__t >= 0) return __t;
[all …]
Dthread312 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = _LIBCPP_NULL_THREAD;}
314 thread& operator=(thread&& __t) _NOEXCEPT;
318 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
337 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>)
339 __invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
413 thread::operator=(thread&& __t) _NOEXCEPT
417 __t_ = __t.__t_;
418 __t.__t_ = _LIBCPP_NULL_THREAD;
455 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
461 while (_Clock::now() < __t)
[all …]
Dexception202 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
209 throw_with_nested(_Tp&& __t, typename enable_if<
215 throw_with_nested (_Tp& __t, typename enable_if<
221 throw __nested<typename remove_reference<_Tp>::type>(_VSTD::forward<_Tp>(__t));
223 ((void)__t);
232 throw_with_nested(_Tp&& __t, typename enable_if<
238 throw_with_nested (_Tp& __t, typename enable_if<
244 throw _VSTD::forward<_Tp>(__t);
246 ((void)__t);
D__tree591 __get_key(__node_value_type const& __t) {
592 return __t.__cc.first;
599 __get_key(_Up& __t) {
600 return __t.first;
605 __get_value(__node_value_type const& __t) {
606 return __t.__cc;
613 __get_value(_Up& __t) {
614 return __t;
843 {__tree_iterator __t(*this); ++(*this); return __t;}
853 {__tree_iterator __t(*this); --(*this); return __t;}
[all …]
D__mutex_base147 unique_lock(mutex_type& __m, const chrono::time_point<_Clock, _Duration>& __t)
148 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_until(__t)) {}
190 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
258 unique_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
264 __owns_ = __m_->try_lock_until(__t);
326 const chrono::time_point<_Clock, _Duration>& __t);
332 const chrono::time_point<_Clock, _Duration>& __t,
385 const chrono::time_point<_Clock, _Duration>& __t)
388 wait_for(__lk, __t - _Clock::now());
389 return _Clock::now() < __t ? cv_status::no_timeout : cv_status::timeout;
[all …]
Dfunctional516 auto operator()(_T1&& __t, _T2&& __u) const
517 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
518 -> decltype (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
519 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
543 auto operator()(_T1&& __t, _T2&& __u) const
544 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u)))
545 -> decltype (_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u))
546 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
570 auto operator()(_T1&& __t, _T2&& __u) const
571 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u)))
[all …]
Dvalarray462 explicit __scalar_expr(const value_type& __t, size_t __s) : __t_(__t), __s_(__s) {}
1282 value_type* __t = __vp_;
1284 for (size_t __n = __size_; __n; --__n, __t += __stride_, __s += __sa.__stride_)
1285 *__t = *__s;
1299 value_type* __t = __vp_;
1300 for (size_t __i = 0; __i < __size_; ++__i, __t += __stride_)
1301 *__t = __v[__i];
1314 value_type* __t = __vp_;
1315 for (size_t __i = 0; __i < __size_; ++__i, __t += __stride_)
1316 *__t *= __v[__i];
[all …]
Dcondition_variable146 const chrono::time_point<_Clock, _Duration>& __t);
152 const chrono::time_point<_Clock, _Duration>& __t,
219 const chrono::time_point<_Clock, _Duration>& __t)
226 return __cv_.wait_until(__lk, __t);
233 const chrono::time_point<_Clock, _Duration>& __t,
237 if (wait_until(__lock, __t) == cv_status::timeout)
Dcomplex533 complex<_Tp> __t(__x);
534 __t += __y;
535 return __t;
543 complex<_Tp> __t(__x);
544 __t += __y;
545 return __t;
553 complex<_Tp> __t(__y);
554 __t += __x;
555 return __t;
563 complex<_Tp> __t(__x);
[all …]
D__functional_base64 auto operator()(_T1&& __t, _T2&& __u) const
65 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u)))
66 -> decltype (_VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u))
67 { return _VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u); }
520 ref(_Tp& __t) _NOEXCEPT
522 return reference_wrapper<_Tp>(__t);
528 ref(reference_wrapper<_Tp> __t) _NOEXCEPT
530 return ref(__t.get());
536 cref(const _Tp& __t) _NOEXCEPT
538 return reference_wrapper<const _Tp>(__t);
[all …]
Dchrono266 static time_t to_time_t (const time_point& __t) noexcept;
267 static time_point from_time_t(time_t __t) noexcept;
443 _ToDuration __t = duration_cast<_ToDuration>(__d);
444 if (__t > __d)
445 __t = __t - _ToDuration{1};
446 return __t;
458 _ToDuration __t = duration_cast<_ToDuration>(__d);
459 if (__t < __d)
460 __t = __t + _ToDuration{1};
461 return __t;
[all …]
Dforward_list335 __forward_list_iterator __t(*this);
337 return __t;
419 __forward_list_const_iterator __t(*this);
421 return __t;
1593 __node_pointer __t = __f2;
1594 while (__t->__next_ != nullptr &&
1595 __comp(__t->__next_->__value_, __f1->__value_))
1596 __t = __t->__next_;
1598 __f2 = __t->__next_;
1599 __t->__next_ = __f1;
[all …]
Dmutex252 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
258 timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
262 bool no_timeout = _Clock::now() < __t;
264 no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout;
296 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
302 recursive_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
314 bool no_timeout = _Clock::now() < __t;
316 no_timeout = __cv_.wait_until(lk, __t) == cv_status::no_timeout;
/external/libcxx/include/experimental/
Dnumeric53 _Result operator()(_Source __t) const noexcept
55 if (__t >= 0) return __t;
56 if (__t == numeric_limits<_Source>::min()) return -static_cast<_Result>(__t);
57 return -__t;
64 _Result operator()(_Source __t) const noexcept { return __t; }
Dtuple61 decltype(auto) __apply_tuple_impl(_Fn && __f, _Tuple && __t,
65 _VSTD::get<_Id>(_VSTD::forward<_Tuple>(__t))...
71 decltype(auto) apply(_Fn && __f, _Tuple && __t) {
73 _VSTD::forward<_Fn>(__f), _VSTD::forward<_Tuple>(__t),
Dpropagate_const422 _LIBCPP_CONSTEXPR bool operator==(const _Tp& __t, const propagate_const<_Up>& __pu)
424 return __t == _VSTD_LFTS_V2::get_underlying(__pu);
429 _LIBCPP_CONSTEXPR bool operator!=(const _Tp& __t, const propagate_const<_Up>& __pu)
431 return __t != _VSTD_LFTS_V2::get_underlying(__pu);
436 _LIBCPP_CONSTEXPR bool operator<(const _Tp& __t, const propagate_const<_Up>& __pu)
438 return __t < _VSTD_LFTS_V2::get_underlying(__pu);
443 _LIBCPP_CONSTEXPR bool operator>(const _Tp& __t, const propagate_const<_Up>& __pu)
445 return __t > _VSTD_LFTS_V2::get_underlying(__pu);
450 _LIBCPP_CONSTEXPR bool operator<=(const _Tp& __t, const propagate_const<_Up>& __pu)
452 return __t <= _VSTD_LFTS_V2::get_underlying(__pu);
[all …]
/external/valgrind/drd/tests/
Dstd_thread.cpp30 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p); in execute_native_thread_routine() local
32 __local.swap(__t->_M_this_ptr); in execute_native_thread_routine()
35 __t->_M_run(); in execute_native_thread_routine()
Dstd_thread2.cpp35 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p); in execute_native_thread_routine() local
37 __local.swap(__t->_M_this_ptr); in execute_native_thread_routine()
40 __t->_M_run(); in execute_native_thread_routine()
/external/clang/www/
Dlibstdc++4.4-clang0x.patch28 - forward(typename std::identity<_Tp>::type&& __t)
29 + forward(typename std::remove_reference<_Tp>::type& __t)
31 + { return static_cast<_Tp&&>(__t); }
33 { return __t; }
38 + forward(typename std::remove_reference<_Tp>::type&& __t)
44 + return static_cast<_Tp&&>(__t);
46 + return __t;
52 move(_Tp&& __t)
54 + { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); }
56 { return __t; }
[all …]
/external/clang/test/CodeGen/
Dmips-constraint-regs.c14 int __t; in main() local
17 : "=c" (__t) in main()
/external/blktrace/
Dblkparse.c801 struct trace *__t; in trace_rb_insert() local
806 __t = rb_entry(parent, struct trace, rb_node); in trace_rb_insert()
808 if (t->bit->time < __t->bit->time) in trace_rb_insert()
810 else if (t->bit->time > __t->bit->time) in trace_rb_insert()
812 else if (t->bit->device < __t->bit->device) in trace_rb_insert()
814 else if (t->bit->device > __t->bit->device) in trace_rb_insert()
816 else if (t->bit->sequence < __t->bit->sequence) in trace_rb_insert()
861 struct trace *__t; in trace_rb_find() local
864 __t = rb_entry(n, struct trace, rb_node); in trace_rb_find()
867 if (device < __t->bit->device) in trace_rb_find()
[all …]

123