HomeSort by: relevance | last modified time | path
    Searched refs:call_once (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/tests/lib/libpthread/
t_call_once.c 41 ATF_TC(call_once); variable
42 ATF_TC_HEAD(call_once, tc)
44 atf_tc_set_md_var(tc, "descr", "Test C11 call_once(3)");
63 call_once(&oflag, called_once);
68 ATF_TC_BODY(call_once, tc)
86 ATF_TP_ADD_TC(tp, call_once);
  /src/tests/usr.bin/c++/
t_call_once.sh 28 atf_test_case call_once
30 atf_set "descr" "compile and run std::call_once"
36 atf_set "descr" "compile and run std::call_once with profiling option"
42 atf_set "descr" "compile and run PIC std::call_once"
48 atf_set "descr" "compile and run 32-bit PIC std::call_once"
54 atf_set "descr" "compile and run PIC std::call_once with profiling flag"
60 atf_set "descr" "compile and run 32-bit PIC std::call_once with profiling flag"
66 atf_set "descr" "compile and run 32-bit std::call_once with profiling flag"
72 atf_set "descr" "compile and run position independent (PIE) std::call_once"
78 atf_set "descr" "compile and run std::call_once for/in netbsd32 emulation
    [all...]
t_call_once2.sh 30 atf_set "descr" "compile and run std::call_once"
37 atf_set "descr" "compile and run std::call_once with profiling option"
44 atf_set "descr" "compile and run PIC std::call_once"
51 atf_set "descr" "compile and run 32-bit PIC std::call_once"
58 atf_set "descr" "compile and run PIC std::call_once with profiling flag"
65 atf_set "descr" "compile and run 32-bit PIC std::call_once with profiling flag"
72 atf_set "descr" "compile and run 32-bit std::call_once with profiling flag"
79 atf_set "descr" "compile and run position independent (PIE) std::call_once"
86 atf_set "descr" "compile and run std::call_once for/in netbsd32 emulation"
93 atf_set "descr" "compile and run std::call_once with static flag
    [all...]
  /src/lib/libpthread/
call_once.c 1 /* $NetBSD: call_once.c,v 1.2 2019/04/24 21:41:15 kamil Exp $ */
33 __RCSID("$NetBSD: call_once.c,v 1.2 2019/04/24 21:41:15 kamil Exp $");
40 call_once(once_flag *flag, void (*func)(void)) function
47 * The call_once(3) function that conforms to C11 returns no value.
threads.h 85 void call_once(once_flag *, void (*)(void));
Makefile 276 SRCS+= call_once.c cnd.c mtx.c thrd.c tss.c
277 MAN+= threads.3 call_once.3 cnd.3 mtx.3 thrd.3 tss.3
279 MLINKS+= call_once.3 ONCE_FLAG_INIT.3
280 MLINKS+= call_once.3 once_flag.3
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
compatibility-thread-c++0x.cc 116 void _M_join() { std::call_once(_M_once, &thread::join, &_M_thread); }
125 template void call_once(once_flag&, void (thread::*&&)(), thread*&&);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
compatibility-thread-c++0x.cc 116 void _M_join() { std::call_once(_M_once, &thread::join, &_M_thread); }
125 template void call_once(once_flag&, void (thread::*&&)(), thread*&&);
  /src/external/gpl3/gdb/dist/gnulib/import/glthread/
lock.c 43 call_once (&lock->init_once, lock->init_func);
53 call_once (&lock->init_once, lock->init_func);
63 call_once (&lock->init_once, lock->init_func);
87 call_once (&lock->init_once, lock->init_func);
114 call_once (&lock->init_once, lock->init_func);
141 call_once (&lock->init_once, lock->init_func);
196 call_once (&lock->init_once, lock->init_func);
218 call_once (&lock->init_once, lock->init_func);
228 call_once (&lock->init_once, lock->init_func);
238 call_once (&lock->init_once, lock->init_func)
    [all...]
lock.h 196 (call_once (ONCE_CONTROL, INITFUNCTION), 0)
  /src/external/gpl3/gdb.old/dist/gnulib/import/glthread/
lock.c 43 call_once (&lock->init_once, lock->init_func);
53 call_once (&lock->init_once, lock->init_func);
63 call_once (&lock->init_once, lock->init_func);
87 call_once (&lock->init_once, lock->init_func);
114 call_once (&lock->init_once, lock->init_func);
141 call_once (&lock->init_once, lock->init_func);
196 call_once (&lock->init_once, lock->init_func);
218 call_once (&lock->init_once, lock->init_func);
228 call_once (&lock->init_once, lock->init_func);
238 call_once (&lock->init_once, lock->init_func)
    [all...]
lock.h 196 (call_once (ONCE_CONTROL, INITFUNCTION), 0)
  /src/external/apache2/llvm/dist/llvm/include/llvm/
PassSupport.h 47 llvm::call_once(Initialize##passName##PassFlag, \
67 llvm::call_once(Initialize##passName##PassFlag, \
148 llvm::call_once(Initialize##agName##AnalysisGroupFlag, \
169 llvm::call_once(Initialize##passName##PassFlag, \
190 llvm::call_once(Initialize##passName##PassFlag, \
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Threading.h 26 // MSVC's call_once implementation worked since VS 2015, which is the minimum
33 // std::call_once from libc++ is used on all Unix platforms. Other
97 /// This type is modeled after std::once_flag to use with llvm::call_once.
113 /// call_once(flag, foo);
119 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { function in namespace:llvm
121 std::call_once(flag, std::forward<Function>(F),
  /src/external/gpl3/gdb/dist/gnulib/import/
mbtowc-lock.c 133 call_once (&init_once, atomic_init);
setlocale-lock.c 133 call_once (&init_once, atomic_init);
  /src/external/gpl3/gdb.old/dist/gnulib/import/
mbtowc-lock.c 133 call_once (&init_once, atomic_init);
setlocale-lock.c 133 call_once (&init_once, atomic_init);
  /src/external/lgpl3/mpfr/dist/src/
mpfr-thread.h 92 call_once(&(_once), (_func)); \
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMRegisterBankInfo.cpp 174 llvm::call_once(InitializeRegisterBankFlag, InitializeRegisterBankOnce);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetPassConfig.cpp 1321 llvm::call_once(InitializeDefaultRegisterAllocatorFlag,
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64RegisterBankInfo.cpp 210 llvm::call_once(InitializeRegisterBankFlag, InitializeRegisterBankOnce);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIRegisterInfo.cpp 330 llvm::call_once(InitializeRegSplitPartsFlag, InitializeRegSplitPartsOnce);
331 llvm::call_once(InitializeSubRegFromChannelTableFlag,
AMDGPURegisterBankInfo.cpp 211 llvm::call_once(InitializeRegisterBankFlag, InitializeRegisterBankOnce);
  /src/external/gpl3/gcc/dist/gcc/cp/
std-name-hint.h 432 {"call_once", "<mutex>", cxx11},

Completed in 39 milliseconds

1 2