Home
last modified time | relevance | path

Searched refs:__t_ (Results 1 – 18 of 18) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/include/
Dtypeindex65 const type_info* __t_;
68 type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
72 {return *__t_ == *__y.__t_;}
76 {return *__t_ != *__y.__t_;}
80 {return __t_->before(*__y.__t_);}
83 {return !__y.__t_->before(*__t_);}
86 {return __y.__t_->before(*__t_);}
89 {return !__t_->before(*__y.__t_);}
93 if (*__t_ == *__y.__t_)
95 if (__t_->before(*__y.__t_))
[all …]
Dthread280 __libcpp_thread_t __t_;
289 thread() _NOEXCEPT : __t_(_LIBCPP_NULL_THREAD) {}
303 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {
304 __t.__t_ = _LIBCPP_NULL_THREAD;
309 if (!__libcpp_thread_isnull(&__t_))
311 __t_ = __t.__t_;
312 __t.__t_ = _LIBCPP_NULL_THREAD;
317 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
320 bool joinable() const _NOEXCEPT {return !__libcpp_thread_isnull(&__t_);}
324 id get_id() const _NOEXCEPT {return __libcpp_thread_get_id(&__t_);}
[all …]
Dmutex522 : __t_(__margs...)
529 : __t_(__margs...)
536 __unlock_unpack(_Indices{}, __t_);
549 _MutexTuple __t_;
D__tree1499 explicit _DetachedTreeCache(__tree *__t) _NOEXCEPT : __t_(__t),
1519 __t_->destroy(__cache_elem_);
1523 __t_->destroy(__cache_root_);
1536 __tree *__t_;
Dvalarray480 const value_type& __t_;
484 explicit __scalar_expr(const value_type& __t, size_t __s) : __t_(__t), __s_(__s) {}
487 __result_type operator[](size_t) const {return __t_;}
/external/libcxx/include/
Dtypeindex60 const type_info* __t_;
63 type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
67 {return *__t_ == *__y.__t_;}
70 {return *__t_ != *__y.__t_;}
73 {return __t_->before(*__y.__t_);}
76 {return !__y.__t_->before(*__t_);}
79 {return __y.__t_->before(*__t_);}
82 {return !__t_->before(*__y.__t_);}
85 size_t hash_code() const _NOEXCEPT {return __t_->hash_code();}
87 const char* name() const _NOEXCEPT {return __t_->name();}
Dthread287 __libcpp_thread_t __t_;
296 thread() _NOEXCEPT : __t_(_LIBCPP_NULL_THREAD) {}
315 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = _LIBCPP_NULL_THREAD;}
321 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
324 bool joinable() const _NOEXCEPT {return !__libcpp_thread_isnull(&__t_);}
328 id get_id() const _NOEXCEPT {return __libcpp_thread_get_id(&__t_);}
330 native_handle_type native_handle() _NOEXCEPT {return __t_;}
368 int __ec = __libcpp_thread_create(&__t_, &__thread_proxy<_Gp>, __p.get());
379 if (!__libcpp_thread_isnull(&__t_))
381 __t_ = __t.__t_;
[all …]
Dmutex520 : __t_(__margs...)
527 : __t_(__margs...)
534 __unlock_unpack(_Indices{}, __t_);
547 _MutexTuple __t_;
Drandom3932 result_type __t_;
3943 result_type t() const {return __t_;}
3949 {return __x.__t_ == __y.__t_ && __x.__p_ == __y.__p_;}
4018 : __t_(__t), __p_(__p)
4022 __r0_ = static_cast<result_type>((__t_ + 1) * __p_);
4023 __pr_ = _VSTD::exp(__libcpp_lgamma(__t_ + 1.) -
4025 __libcpp_lgamma(__t_ - __r0_ + 1.) + __r0_ * _VSTD::log(__p_) +
4026 (__t_ - __r0_) * _VSTD::log(1 - __p_));
4038 if (__pr.__t_ == 0 || __pr.__p_ == 0)
4041 return __pr.__t_;
[all …]
Dvalarray460 const value_type& __t_;
464 explicit __scalar_expr(const value_type& __t, size_t __s) : __t_(__t), __s_(__s) {}
467 result_type operator[](size_t) const {return __t_;}
/external/cronet/buildtools/third_party/libc++/trunk/include/__random/
Dbinomial_distribution.h37 result_type __t_; variable
48 result_type t() const {return __t_;} in t()
54 {return __x.__t_ == __y.__t_ && __x.__p_ == __y.__p_;}
132 : __t_(__t), __p_(__p) in param_type()
136 __r0_ = static_cast<result_type>((__t_ + 1) * __p_); in param_type()
137 __pr_ = _VSTD::exp(std::__libcpp_lgamma(__t_ + 1.) - in param_type()
139 std::__libcpp_lgamma(__t_ - __r0_ + 1.) + __r0_ * _VSTD::log(__p_) + in param_type()
140 (__t_ - __r0_) * _VSTD::log(1 - __p_)); in param_type()
153 if (__pr.__t_ == 0 || __pr.__p_ == 0) in operator()
156 return __pr.__t_; in operator()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/__ranges/
Dnon_propagating_cache.h48 : __t_(std::forward<_Args>(__args)...) {} in __wrapper()
50 … _LIBCPP_HIDE_FROM_ABI constexpr explicit __wrapper(__from_tag, _Fn const& __f) : __t_(__f()) {} in __wrapper()
51 _Tp __t_; member
87 constexpr _Tp& operator*() { return __value_->__t_; }
89 constexpr _Tp const& operator*() const { return __value_->__t_; }
97 return __value_.emplace(__from_tag{}, __f).__t_; in __emplace_from()
103 return __value_.emplace(__forward_tag{}, std::forward<_Args>(__args)...).__t_; in __emplace()
/external/cronet/buildtools/third_party/libc++/trunk/src/
Dthread.cpp39 if (!__libcpp_thread_isnull(&__t_)) in ~thread()
47 if (!__libcpp_thread_isnull(&__t_)) in join()
49 ec = __libcpp_thread_join(&__t_); in join()
51 __t_ = _LIBCPP_NULL_THREAD; in join()
62 if (!__libcpp_thread_isnull(&__t_)) in detach()
64 ec = __libcpp_thread_detach(&__t_); in detach()
66 __t_ = _LIBCPP_NULL_THREAD; in detach()
/external/libcxx/src/
Dthread.cpp43 if (!__libcpp_thread_isnull(&__t_)) in ~thread()
51 if (!__libcpp_thread_isnull(&__t_)) in join()
53 ec = __libcpp_thread_join(&__t_); in join()
55 __t_ = _LIBCPP_NULL_THREAD; in join()
66 if (!__libcpp_thread_isnull(&__t_)) in detach()
68 ec = __libcpp_thread_detach(&__t_); in detach()
70 __t_ = _LIBCPP_NULL_THREAD; in detach()
/external/libcxx/include/experimental/
Dpropagate_const185 _Tp __t_;
201 : __t_(std::move(_VSTD_LFTS_V2::get_underlying(__pu)))
208 : __t_(std::move(_VSTD_LFTS_V2::get_underlying(__pu)))
216 : __t_(std::forward<_Up>(__u))
224 : __t_(std::forward<_Up>(__u))
235 __t_ = std::move(_VSTD_LFTS_V2::get_underlying(__pu));
242 __t_ = std::forward<_Up>(__u);
248 return __get_pointer(__t_);
253 return __get_pointer(__t_);
296 swap(__t_, __pt.__t_);
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/experimental/
Dpropagate_const203 _Tp __t_;
219 : __t_(std::move(_VSTD_LFTS_V2::get_underlying(__pu)))
226 : __t_(std::move(_VSTD_LFTS_V2::get_underlying(__pu)))
234 : __t_(std::forward<_Up>(__u))
242 : __t_(std::forward<_Up>(__u))
253 __t_ = std::move(_VSTD_LFTS_V2::get_underlying(__pu));
260 __t_ = std::forward<_Up>(__u);
266 return __get_pointer(__t_);
271 return __get_pointer(__t_);
314 swap(__t_, __pt.__t_);
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/__iterator/
Dreverse_iterator.h63 _Iter __t_; // no longer used as of LWG #2360, not removed due to ABI break
93 reverse_iterator() : __t_(), current() {} in reverse_iterator()
96 explicit reverse_iterator(_Iter __x) : __t_(__x), current(__x) {} in reverse_iterator()
103 : __t_(__u.base()), current(__u.base()) in reverse_iterator()
113 __t_ = current = __u.base();
/external/libabigail/tests/data/test-read-dwarf/
Dtest-libandroid.so.abi16473 …<var-decl name='__t_' type-id='4d234a76' visibility='default' filepath='external/libcxx/include/th…