Home
last modified time | relevance | path

Searched refs:__call_once (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__mutex/
H A Donce_flag.h121 _LIBCPP_EXPORTED_FROM_ABI void __call_once(volatile once_flag::_State_type&, void*, void (*)(void*)…
131 std::__call_once(__flag.__state_, &__p, &__call_once_proxy<_Gp>); in call_once()
141 std::__call_once(__flag.__state_, &__p, &__call_once_proxy<_Callable>); in call_once()
149 std::__call_once(__flag.__state_, &__p, &__call_once_proxy<const _Callable>); in call_once()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dcall_once.cpp31 void __call_once(volatile once_flag::_State_type& flag, void* arg, void (*func)(void*)) { in __call_once() function