Home
last modified time | relevance | path

Searched refs:__t (Results 1 – 25 of 63) 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 …]
Dtuple221 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value))
222 : __value_(_VSTD::forward<_Tp>(__t))
228 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t)
229 : __value_(_VSTD::forward<_Tp>(__t))
235 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t)
236 : __value_(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t))
242 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t)
243 : __value_(_VSTD::forward<_Tp>(__t), __a)
247 __tuple_leaf(const __tuple_leaf& __t) = default;
248 __tuple_leaf(__tuple_leaf&& __t) = default;
[all …]
D__threading_support171 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t);
174 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
181 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t);
184 int __libcpp_thread_join(__libcpp_thread_t *__t);
187 int __libcpp_thread_detach(__libcpp_thread_t *__t);
321 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) {
322 return *__t == 0;
325 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
328 return pthread_create(__t, 0, __func, __arg);
336 __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 …]
Dexception254 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
265 __do_throw(_Tp&& __t)
267 __do_throw (_Tp& __t)
270 throw __nested<_Up>(_VSTD::forward<_Tp>(__t));
278 __do_throw(_Tp&& __t)
280 __do_throw (_Tp& __t)
283 throw _VSTD::forward<_Tp>(__t);
292 throw_with_nested(_Tp&& __t)
294 throw_with_nested (_Tp& __t)
304 __do_throw(_VSTD::forward<_Tp>(__t));
[all …]
D__tree582 __get_key(__node_value_type const& __t) {
583 return __t.__get_value().first;
590 __get_key(_Up& __t) {
591 return __t.first;
596 __get_value(__node_value_type const& __t) {
597 return __t.__get_value();
604 __get_value(_Up& __t) {
605 return __t;
844 {__tree_iterator __t(*this); ++(*this); return __t;}
854 {__tree_iterator __t(*this); --(*this); return __t;}
[all …]
Dnumeric268 typename iterator_traits<_InputIterator>::value_type __t(*__first);
269 *__result = __t;
272 __t = __t + *__first;
273 *__result = __t;
287 typename iterator_traits<_InputIterator>::value_type __t(*__first);
288 *__result = __t;
291 __t = __binary_op(__t, *__first);
292 *__result = __t;
464 _Result operator()(_Source __t) const noexcept
466 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 …]
D__functional_03614 __base* __t = __f_;
616 if (__t == (__base*)&__buf_)
617 __t->destroy();
618 else if (__t)
619 __t->destroy_deallocate();
654 __base* __t = (__base*)&__tempbuf;
655 __f_->__clone(__t);
662 __t->__clone((__base*)&__f.__buf_);
663 __t->destroy();
894 __base* __t = __f_;
[all …]
Dvalarray464 explicit __scalar_expr(const value_type& __t, size_t __s) : __t_(__t), __s_(__s) {}
1284 value_type* __t = __vp_;
1286 for (size_t __n = __size_; __n; --__n, __t += __stride_, __s += __sa.__stride_)
1287 *__t = *__s;
1301 value_type* __t = __vp_;
1302 for (size_t __i = 0; __i < __size_; ++__i, __t += __stride_)
1303 *__t = __v[__i];
1316 value_type* __t = __vp_;
1317 for (size_t __i = 0; __i < __size_; ++__i, __t += __stride_)
1318 *__t *= __v[__i];
[all …]
Dfunctional525 auto operator()(_T1&& __t, _T2&& __u) const
526 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
527 -> decltype (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
528 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
552 auto operator()(_T1&& __t, _T2&& __u) const
553 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u)))
554 -> decltype (_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u))
555 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
579 auto operator()(_T1&& __t, _T2&& __u) const
580 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u)))
[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 …]
Dcomplex534 complex<_Tp> __t(__x);
535 __t += __y;
536 return __t;
544 complex<_Tp> __t(__x);
545 __t += __y;
546 return __t;
554 complex<_Tp> __t(__y);
555 __t += __x;
556 return __t;
564 complex<_Tp> __t(__x);
[all …]
Dcharconv166 auto __t = (64 - __builtin_clzll(__v | 1)) * 1233 >> 12;
167 return __t - (__v < __pow10_64[__t]) + 1;
188 auto __t = (32 - __builtin_clz(__v | 1)) * 1233 >> 12;
189 return __t - (__v < __pow10_32[__t]) + 1;
535 using __t = decltype(__to_unsigned(__value));
536 return __sign_combinator(__first, __last, __value, __from_chars_atoi<__t>);
591 using __t = decltype(__to_unsigned(__value));
593 __from_chars_integral<__t>, __base);
Dforward_list347 __forward_list_iterator __t(*this);
349 return __t;
431 __forward_list_const_iterator __t(*this);
433 return __t;
1594 __node_pointer __t = __f2;
1595 while (__t->__next_ != nullptr &&
1596 __comp(__t->__next_->__value_, __f1->__value_))
1597 __t = __t->__next_;
1599 __f2 = __t->__next_;
1600 __t->__next_ = __f1;
[all …]
Dmutex257 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
263 timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
267 bool no_timeout = _Clock::now() < __t;
269 no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout;
301 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
307 recursive_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
319 bool no_timeout = _Clock::now() < __t;
321 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/icu/libandroidicu/include/unicode/
Dutf8.h383 uint8_t __t = 0; \
388 U8_LEAD3_T1_BITS[(c)&=0xf]&(1<<((__t=(s)[i])>>5)) && \
389 (__t&=0x3f, 1) \
392 U8_LEAD4_T1_BITS[(__t=(s)[i])>>4]&(1<<(c)) && \
393 ((c)=((c)<<6)|(__t&0x3f), ++(i)!=(length)) && \
394 (__t=(s)[i]-0x80)<=0x3f) && \
396 ((c)=((c)<<6)|__t, ++(i)!=(length)) \
400 (__t=(s)[i]-0x80)<=0x3f && \
401 ((c)=((c)<<6)|__t, ++(i), 1)) { \
/external/icu/icu4c/source/common/unicode/
Dutf8.h383 uint8_t __t = 0; \
388 U8_LEAD3_T1_BITS[(c)&=0xf]&(1<<((__t=(s)[i])>>5)) && \
389 (__t&=0x3f, 1) \
392 U8_LEAD4_T1_BITS[(__t=(s)[i])>>4]&(1<<(c)) && \
393 ((c)=((c)<<6)|(__t&0x3f), ++(i)!=(length)) && \
394 (__t=(s)[i]-0x80)<=0x3f) && \
396 ((c)=((c)<<6)|__t, ++(i)!=(length)) \
400 (__t=(s)[i]-0x80)<=0x3f && \
401 ((c)=((c)<<6)|__t, ++(i), 1)) { \
/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/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 …]
/external/blktrace/
Dblkparse.c803 struct trace *__t; in trace_rb_insert() local
808 __t = rb_entry(parent, struct trace, rb_node); in trace_rb_insert()
810 if (t->bit->time < __t->bit->time) in trace_rb_insert()
812 else if (t->bit->time > __t->bit->time) in trace_rb_insert()
814 else if (t->bit->device < __t->bit->device) in trace_rb_insert()
816 else if (t->bit->device > __t->bit->device) in trace_rb_insert()
818 else if (t->bit->sequence < __t->bit->sequence) in trace_rb_insert()
863 struct trace *__t; in trace_rb_find() local
866 __t = rb_entry(n, struct trace, rb_node); in trace_rb_find()
869 if (device < __t->bit->device) in trace_rb_find()
[all …]

123