Home
last modified time | relevance | path

Searched refs:__t (Results 1 – 25 of 53) 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 …]
Dtuple220 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value))
221 : __value_(_VSTD::forward<_Tp>(__t))
227 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t)
228 : __value_(_VSTD::forward<_Tp>(__t))
234 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t)
235 : __value_(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t))
241 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t)
242 : __value_(_VSTD::forward<_Tp>(__t), __a)
246 __tuple_leaf(const __tuple_leaf& __t) = default;
247 __tuple_leaf(__tuple_leaf&& __t) = default;
[all …]
D__threading_support174 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t);
177 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
184 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t);
187 int __libcpp_thread_join(__libcpp_thread_t *__t);
190 int __libcpp_thread_detach(__libcpp_thread_t *__t);
324 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) {
325 return *__t == 0;
328 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
331 return pthread_create(__t, 0, __func, __arg);
339 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t)
[all …]
Dthread315 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = _LIBCPP_NULL_THREAD;}
317 thread& operator=(thread&& __t) _NOEXCEPT;
321 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
340 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>)
342 __invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
377 thread::operator=(thread&& __t) _NOEXCEPT
381 __t_ = __t.__t_;
382 __t.__t_ = _LIBCPP_NULL_THREAD;
454 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
460 while (_Clock::now() < __t)
[all …]
D__tree593 __get_key(__node_value_type const& __t) {
594 return __t.__cc.first;
601 __get_key(_Up& __t) {
602 return __t.first;
607 __get_value(__node_value_type const& __t) {
608 return __t.__cc;
615 __get_value(_Up& __t) {
616 return __t;
845 {__tree_iterator __t(*this); ++(*this); return __t;}
855 {__tree_iterator __t(*this); --(*this); return __t;}
[all …]
Dexception253 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
264 __do_throw(_Tp&& __t)
266 __do_throw (_Tp& __t)
269 throw __nested<_Up>(_VSTD::forward<_Tp>(__t));
277 __do_throw(_Tp&& __t)
279 __do_throw (_Tp& __t)
282 throw _VSTD::forward<_Tp>(__t);
291 throw_with_nested(_Tp&& __t)
293 throw_with_nested (_Tp& __t)
303 __do_throw(_VSTD::forward<_Tp>(__t));
[all …]
Dnumeric267 typename iterator_traits<_InputIterator>::value_type __t(*__first);
268 *__result = __t;
271 __t = __t + *__first;
272 *__result = __t;
286 typename iterator_traits<_InputIterator>::value_type __t(*__first);
287 *__result = __t;
290 __t = __binary_op(__t, *__first);
291 *__result = __t;
463 _Result operator()(_Source __t) const noexcept
465 if (__t >= 0) return __t;
[all …]
D__mutex_base143 unique_lock(mutex_type& __m, const chrono::time_point<_Clock, _Duration>& __t)
144 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_until(__t)) {}
186 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
254 unique_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
260 __owns_ = __m_->try_lock_until(__t);
322 const chrono::time_point<_Clock, _Duration>& __t);
328 const chrono::time_point<_Clock, _Duration>& __t,
381 const chrono::time_point<_Clock, _Duration>& __t)
384 wait_for(__lk, __t - _Clock::now());
385 return _Clock::now() < __t ? cv_status::no_timeout : cv_status::timeout;
[all …]
Dfunctional517 auto operator()(_T1&& __t, _T2&& __u) const
518 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
519 -> decltype (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
520 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
544 auto operator()(_T1&& __t, _T2&& __u) const
545 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u)))
546 -> decltype (_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u))
547 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
571 auto operator()(_T1&& __t, _T2&& __u) const
572 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u)))
[all …]
Dvalarray464 explicit __scalar_expr(const value_type& __t, size_t __s) : __t_(__t), __s_(__s) {}
1280 value_type* __t = __vp_;
1282 for (size_t __n = __size_; __n; --__n, __t += __stride_, __s += __sa.__stride_)
1283 *__t = *__s;
1297 value_type* __t = __vp_;
1298 for (size_t __i = 0; __i < __size_; ++__i, __t += __stride_)
1299 *__t = __v[__i];
1312 value_type* __t = __vp_;
1313 for (size_t __i = 0; __i < __size_; ++__i, __t += __stride_)
1314 *__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)
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); }
516 ref(_Tp& __t) _NOEXCEPT
518 return reference_wrapper<_Tp>(__t);
524 ref(reference_wrapper<_Tp> __t) _NOEXCEPT
526 return ref(__t.get());
532 cref(const _Tp& __t) _NOEXCEPT
534 return reference_wrapper<const _Tp>(__t);
[all …]
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 …]
Dforward_list336 __forward_list_iterator __t(*this);
338 return __t;
420 __forward_list_const_iterator __t(*this);
422 return __t;
1563 __node_pointer __t = __f2;
1564 while (__t->__next_ != nullptr &&
1565 __comp(__t->__next_->__value_, __f1->__value_))
1566 __t = __t->__next_;
1568 __f2 = __t->__next_;
1569 __t->__next_ = __f1;
[all …]
Dchrono266 static time_t to_time_t (const time_point& __t) noexcept;
267 static time_point from_time_t(time_t __t) noexcept;
446 _ToDuration __t = duration_cast<_ToDuration>(__d);
447 if (__t > __d)
448 __t = __t - _ToDuration{1};
449 return __t;
461 _ToDuration __t = duration_cast<_ToDuration>(__d);
462 if (__t < __d)
463 __t = __t + _ToDuration{1};
464 return __t;
[all …]
Dmutex256 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
262 timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
266 bool no_timeout = _Clock::now() < __t;
268 no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout;
300 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
306 recursive_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
318 bool no_timeout = _Clock::now() < __t;
320 no_timeout = __cv_.wait_until(lk, __t) == cv_status::no_timeout;
/external/libcxx/src/support/win32/
Dthread_win32.cpp192 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) { in __libcpp_thread_isnull() argument
193 return *__t == 0; in __libcpp_thread_isnull()
196 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create() argument
203 *__t = reinterpret_cast<HANDLE>(_beginthreadex(nullptr, 0, in __libcpp_thread_create()
207 if (*__t) in __libcpp_thread_create()
217 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t) in __libcpp_thread_get_id() argument
219 return GetThreadId(*__t); in __libcpp_thread_get_id()
222 int __libcpp_thread_join(__libcpp_thread_t *__t) in __libcpp_thread_join() argument
224 if (WaitForSingleObjectEx(*__t, INFINITE, FALSE) == WAIT_FAILED) in __libcpp_thread_join()
226 if (!CloseHandle(*__t)) in __libcpp_thread_join()
[all …]
/external/valgrind/drd/tests/
Dstd_thread.cpp31 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p); in _v_execute_native_thread_routine() local
33 __local.swap(__t->_M_this_ptr); in _v_execute_native_thread_routine()
36 __t->_M_run(); in _v_execute_native_thread_routine()
Dstd_thread2.cpp36 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p); in _v_execute_native_thread_routine() local
38 __local.swap(__t->_M_this_ptr); in _v_execute_native_thread_routine()
41 __t->_M_run(); in _v_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/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 …]
/external/libcxx/include/experimental/
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 …]
Dmemory_resource284 __transform_tuple(integral_constant<int, 0>, tuple<_Args...>&& __t,
287 return _VSTD::forward_as_tuple(_VSTD::get<_Idx>(_VSTD::move(__t))...);
293 __transform_tuple(integral_constant<int, 1>, tuple<_Args...> && __t,
298 _VSTD::get<_Idx>(_VSTD::move(__t))...);
304 __transform_tuple(integral_constant<int, 2>, tuple<_Args...> && __t,
308 return _Tup(_VSTD::get<_Idx>(_VSTD::move(__t))..., resource());
/external/clang/test/CodeGen/
Dmips-constraint-regs.c14 int __t; in main() local
17 : "=c" (__t) in main()

123