Searched refs:once (Results 1 - 25 of 121) sorted by path

12345

/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex5108 % Change the page size parameters. We could do this once outside this
5111 % of assignments once per index is clearly meaningless for the
5200 % invocation ends. Having called \balancecolumns once, we do not
5488 % \the<toks register> to achieve this: TeX expands \the<toks> only once,
6128 % chapters. Have to read the whole toc once to know how many chapters
7460 % each BLAH argument. It was anyhow needed to parse already once this list
7579 % within an \edef expand only once. So we are going to place all argument
7590 % are within tokens and that tokens expand only once in an \edef .
7791 \newif\ifwarnedxrefs % True if we warned once that they aren't known.
8426 % We will only complain once abou
[all...]
/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dthread.c309 (*control)->once = once_init;
316 return pthread_once(&control->once, func);
/freebsd-11-stable/contrib/bmake/
H A Dmeta.c161 /* we don't need these once we exec */
592 static int once = 0; local
625 if (once)
627 once = 1;
681 /* compat mode we open the filemon dev once per command */
/freebsd-11-stable/contrib/bmake/mk/
H A Ddirdeps.mk155 # do some setup we only need once
344 # which should only be done once.
693 # once only
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 Dmeta.autodep.mk280 # make sure this is included at least 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/gcc/config/i386/
H A Dgthr-win32.c74 __gthr_win32_once (__gthread_once_t *once, void (*func) (void)) argument
76 if (once == NULL || func == NULL)
79 if (! once->done)
81 if (InterlockedIncrement (&(once->started)) == 0)
84 once->done = TRUE;
93 while (! once->done)
/freebsd-11-stable/contrib/gcc/cp/
H A Dsearch.c1584 that binfos are walked at most once. */
1709 dfs_walk_once_accessible_r (tree binfo, bool friends_p, bool once,
1733 bool mark = once && BINFO_VIRTUAL_P (base_binfo);
1756 rval = dfs_walk_once_accessible_r (base_binfo, friends_p, once,
1706 dfs_walk_once_accessible_r(tree binfo, bool friends_p, bool once, tree (*pre_fn) (tree, void *), tree (*post_fn) (tree, void *), void *data) argument
/freebsd-11-stable/contrib/gcc/doc/include/
H A Dtexinfo.tex3873 % Change the page size parameters. We could do this once outside this
3876 % of assignments once per index is clearly meaningless for the
3937 % invocation ends. Having called \balancecolumns once, we do not
4201 % \the<toks register> to achieve this: TeX expands \the<toks> only once,
4725 % chapters. Have to read the whole toc once to know how many chapters
5970 \newif\ifwarnedxrefs % True if we warned once that they aren't known.
6506 % We will only complain once about lack of epsf.tex.
/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/gcc/
H A Dgthr-dce.h433 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
436 return __gthrw_(pthread_once) (once, func);
H A Dgthr-nks.h284 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
286 if (__compare_and_swap (once, 0, 1))
289 *once |= 2;
293 while (!(*once & 2))
H A Dgthr-posix.c37 pthread_once (pthread_once_t *once ATTRIBUTE_UNUSED,
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);
H A Dgthr-rtems.h58 extern int rtems_gxx_once (__gthread_once_t *once, void (*func) (void));
85 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
87 return rtems_gxx_once( once, func );
H A Dgthr-solaris.h51 int once; member in struct:__anon1339
406 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
411 if (once == 0 || func == 0)
414 if (once->once == 0)
416 int status = __gthrw_(mutex_lock) (&once->mutex);
419 if (once->once == 0)
422 once->once
[all...]
H A Dgthr-tpf.h103 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
106 return __gthrw_(pthread_once) (once, func);
H A Dgthr-vxworks.h113 extern int __gthread_once (__gthread_once_t *once, void (*func)(void));
H A Dgthr-win32.h428 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
431 return __gthr_win32_once (once, func);
532 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
536 else if (once == NULL || func == NULL)
539 if (! once->done)
541 if (InterlockedIncrement (&(once->started)) == 0)
544 once->done = TRUE;
553 while (! once->done)
H A Dunwind-dw2-fde.c68 static __gthread_once_t once = __GTHREAD_ONCE_INIT; local
69 __gthread_once (&once, init_object_mutex);
634 /* Take care to ignore link-once functions that were removed.
695 /* Take care to ignore link-once functions that were removed.
817 /* Take care to ignore link-once functions that were removed.
H A Dunwind-sjlj.c73 /* These are filled in once by the target function before any
119 static __gthread_once_t once = __GTHREAD_ONCE_INIT;
120 if (__gthread_once (&once, fc_key_init) != 0 || use_fc_key < 0)
118 static __gthread_once_t once = __GTHREAD_ONCE_INIT; local

Completed in 304 milliseconds

12345