Searched refs:once (Results 51 - 75 of 121) sorted by relevance

12345

/freebsd-11-stable/contrib/bmake/mk/
H A Dinit.mk58 # define this once for consistency
H A Djava.mk55 # java works best by compiling a bunch of classes at once.
H A Dsys.mk32 # some things we do only once
H A Dwarnings.mk106 # define this once, we use it a couple of times below (hence the doubled $$).
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp892 const SelectionDAG *G, VisitedSDNodeSet &once) {
893 if (!once.insert(N).second) // If we've been here before, return now.
908 once.insert(Op.getNode());
915 DumpNodesr(OS, Op.getNode(), indent+2, G, once);
919 VisitedSDNodeSet once;
920 DumpNodesr(dbgs(), this, 0, nullptr, once);
924 VisitedSDNodeSet once;
925 DumpNodesr(dbgs(), this, 0, G, once);
/freebsd-11-stable/usr.sbin/rtsold/
H A Drtsold.c114 int s, ch, once = 0; local
128 once = 1;
153 once = 1;
282 if (!once) {
306 if (once) {
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dhash.c66 #include <isc/once.h>
103 static isc_once_t once = ISC_ONCE_INIT; variable
229 RUNTIME_CHECK(isc_once_do(&once, initialize_lock) == ISC_R_SUCCESS);
/freebsd-11-stable/sys/kern/
H A Dsubr_devstat.c505 static int once; local
508 if (!once) {
512 once = 1;
H A Dkern_cpuset.c930 * This is called once the final set of system cpus is known. Modifies
1320 int cpu, once; local
1322 for (once = 0, cpu = 0; cpu < CPU_SETSIZE; cpu++) {
1324 if (once == 0) {
1326 once = 1;
1331 if (once == 0)
H A Dkern_shutdown.c343 static int once = 0; local
372 if (!cold && (howto & RB_NOSYNC) == 0 && once == 0) {
373 once = 1;
H A Dsubr_rman.c129 static int once = 0; local
131 if (once == 0) {
132 once = 1;
490 * searching further once r_start is too large.
/freebsd-11-stable/lib/libc/gen/
H A Dsem_new.c79 static pthread_once_t once = PTHREAD_ONCE_INIT; variable
174 _pthread_once(&once, sem_module_init);
270 _pthread_once(&once, sem_module_init);
/freebsd-11-stable/sys/i386/linux/
H A Dlinux_ptrace.c336 static int once = 0; local
337 if (!once) {
339 once = 1;
/freebsd-11-stable/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh377 "same column more than once"
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVCSetupApi.h29 #pragma once
/freebsd-11-stable/contrib/gcc/
H A Dgthr-posix.h575 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
578 return __gthrw_(pthread_once) (once, func);
H A Dgthr-posix95.h541 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
544 return __gthrw_(pthread_once) (once, func);
/freebsd-11-stable/tools/tools/editing/
H A Dfreebsd.vim31 " Load only once.
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc526 "interceptor: %.*s (reported once per process)\n",
/freebsd-11-stable/sys/netinet/
H A Dsctp_timer.c176 int once; local
331 once = 0;
342 once++;
343 if (once > 1) {
370 once = 0;
378 once++;
379 if (once > 1) {
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_perf.c249 static int once = 1; local
280 if (once) {
281 once = 0;
/freebsd-11-stable/contrib/gcc/doc/
H A Dmakefile.texi89 that GCC is built three times---once with the native compiler, once with
90 the native-built compiler it just built, and once with the compiler it
113 Like @code{bootstrap}, except that the various stages are removed once
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dlibisc.mak161 -@erase "$(INTDIR)\once.obj"
228 "$(INTDIR)\once.obj" \
398 -@erase "$(INTDIR)\once.obj"
399 -@erase "$(INTDIR)\once.sbr"
497 "$(INTDIR)\once.sbr" \
585 "$(INTDIR)\once.obj" \
907 SOURCE=.\once.c
912 "$(INTDIR)\once.obj" : $(SOURCE) "$(INTDIR)"
918 "$(INTDIR)\once.obj" "$(INTDIR)\once
[all...]
/freebsd-11-stable/usr.sbin/efibootmgr/
H A Defibootmgr.c85 bool once; member in struct:_bmgr_opts
112 {"once", no_argument, NULL, 'O'},
247 opts.once = true;
/freebsd-11-stable/contrib/xz/src/common/
H A Dmythread.h71 // Calls the given function once. This isn't thread safe.
127 // Calls the given function once in a thread-safe way.
375 if (!InitOnceComplete(&once, 0, NULL)) \

Completed in 389 milliseconds

12345