Home
last modified time | relevance | path

Searched refs:__thread_struct (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Dthread.cpp100 __thread_specific_ptr<__thread_struct>& __thread_local_data() { in hardware_concurrency()
105 alignas(__thread_specific_ptr<__thread_struct>) static char __b[sizeof(__thread_specific_ptr<__thread_struct>)];
106 static __thread_specific_ptr<__thread_struct>* __p = new (__b) __thread_specific_ptr<__thread_struct>();
161 // __thread_struct
163 __thread_struct::__thread_struct() : __p_(new __thread_struct_imp) {}
165 __thread_struct::~__thread_struct() { delet in ~__thread_struct_imp()
195 __thread_struct::__thread_struct() __thread_struct() function in __thread_struct
[all...]
H A Dcondition_variable.cpp64 tl_ptr.set_pointer(new __thread_struct); in __do_timed_wait()
/freebsd/contrib/llvm-project/libcxx/include/__thread/
H A Dthread.h42 class _LIBCPP_EXPORTED_FROM_ABI __thread_struct; variable
46 _LIBCPP_EXPORTED_FROM_ABI __thread_specific_ptr<__thread_struct>& __thread_local_data();
48 class _LIBCPP_EXPORTED_FROM_ABI __thread_struct {
51 __thread_struct(const __thread_struct&);
52 __thread_struct& operator=(const __thread_struct&);
55 __thread_struct();
56 ~__thread_struct();
68 static_assert(is_same<_Tp, __thread_struct>::value, "");
70 friend _LIBCPP_EXPORTED_FROM_ABI __thread_specific_ptr<__thread_struct>& __thread_local_data();
207 typedef unique_ptr<__thread_struct> _TSPtr;
[all …]