Lines Matching refs:__p
138 void reset(pointer __p = nullptr);
143 __thread_specific_ptr<_Tp>::__at_thread_exit(void* __p)
145 delete static_cast<pointer>(__p);
169 pointer __p = get();
171 return __p;
176 __thread_specific_ptr<_Tp>::reset(pointer __p)
179 pthread_setspecific(__key_, __p);
345 std::unique_ptr<_Fp> __p(static_cast<_Fp*>(__vp));
347 __thread_execute(*__p, _Index());
357 _VSTD::unique_ptr<_Gp> __p(new _Gp(__decay_copy(_VSTD::forward<_Fp>(__f)),
359 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Gp>, __p.get());
361 __p.release();
373 std::unique_ptr<_Fp> __p(static_cast<_Fp*>(__vp));
374 (*__p)();
381 std::unique_ptr<_Fp> __p(new _Fp(__f));
382 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Fp>, __p.get());
384 __p.release();