Home
last modified time | relevance | path

Searched refs:__flag (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libcxx/include/
H A Dmutex666 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args)
668 if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
673 __call_once(__flag.__state_, &__p, &__call_once_proxy<_Gp>);
682 call_once(once_flag& __flag, _Callable& __func)
684 if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
687 __call_once(__flag.__state_, &__p, &__call_once_proxy<_Callable>);
694 call_once(once_flag& __flag, const _Callable& __func)
696 if (__libcpp_acquire_load(&__flag.__state_) != ~once_flag::_State_type(0))
699 __call_once(__flag.__state_, &__p, &__call_once_proxy<const _Callable>);
H A D__threading_support204 int __libcpp_execute_once(__libcpp_exec_once_flag *__flag,
350 int __libcpp_execute_once(__libcpp_exec_once_flag *__flag,
352 return pthread_once(__flag, __init_routine);
/llvm-project-15.0.7/libcxx/src/support/win32/
H A Dthread_win32.cpp153 int __libcpp_execute_once(__libcpp_exec_once_flag *__flag, in __libcpp_execute_once() argument
156 if (!InitOnceExecuteOnce((PINIT_ONCE)__flag, __libcpp_init_once_execute_once_thunk, in __libcpp_execute_once()
/llvm-project-15.0.7/pstl/include/pstl/internal/
H A Dunseq_backend_simd.h81 int32_t __flag = 1; in __simd_or()
82 _PSTL_PRAGMA_SIMD_REDUCTION(& : __flag) in __simd_or()
85 __flag = 0; in __simd_or()
86 if (!__flag) in __simd_or()