| /netbsd/src/tests/lib/libpthread/ |
| D | t_once.c | 48 static pthread_once_t once = PTHREAD_ONCE_INIT; variable 77 PTHREAD_REQUIRE(pthread_once(&once, ofunc)); in ATF_TC_BODY() 78 PTHREAD_REQUIRE(pthread_once(&once, ofunc)); in ATF_TC_BODY() 97 PTHREAD_REQUIRE(pthread_once(&once, once2_ofunc)); in once2_threadfunc() 150 PTHREAD_REQUIRE(pthread_once(&once, once3_ofunc)); in once3_threadfunc() 191 PTHREAD_REQUIRE(pthread_once(&once, ofunc)); in ATF_TC_BODY() 213 (void)pthread_once(&once, &ofunc_silent); in fork_and_once() 251 once = once0; in ATF_TC_BODY() 257 (void)pthread_once(&once, &ofunc_silent); in ATF_TC_BODY()
|
| /netbsd/src/external/gpl3/gcc/dist/libgcc/config/i386/ |
| D | gthr-win32.c | 68 __gthr_win32_once (__gthread_once_t *once, void (*func) (void)) in __gthr_win32_once() argument 70 if (once == NULL || func == NULL) in __gthr_win32_once() 73 if (! once->done) in __gthr_win32_once() 75 if (InterlockedIncrement (&(once->started)) == 0) in __gthr_win32_once() 78 once->done = TRUE; in __gthr_win32_once() 87 while (! once->done) in __gthr_win32_once()
|
| /netbsd/src/external/bsd/libbind/dist/irs/ |
| D | gai_strerror.c | 61 static int once = 0; in gai_strerror() 69 if (!once) { in gai_strerror() 72 if (!once) { in gai_strerror() 77 once = 1; in gai_strerror()
|
| D | irs_data.c | 58 static int once = 0; variable 133 if (!once) { in net_data_init() 136 if (!once) { in net_data_init() 141 once = 1; in net_data_init()
|
| /netbsd/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| D | evp-openssl.c | 248 get_EVP_CIPHER(heim_base_once_t *once, hc_EVP_CIPHER *hc_memoize, in get_EVP_CIPHER() argument 260 heim_base_once_f(once, &arg, get_EVP_CIPHER_once_cb); in get_EVP_CIPHER() 270 static heim_base_once_t once = HEIM_BASE_ONCE_INIT; \ 271 return get_EVP_CIPHER(&once, &ossl_##name##_st, &ossl_##name, \ 373 get_EVP_MD(heim_base_once_t *once, hc_EVP_MD *hc_memoize, in get_EVP_MD() argument 386 heim_base_once_f(once, &ctx, get_EVP_MD_once_cb); in get_EVP_MD() 401 static heim_base_once_t once = HEIM_BASE_ONCE_INIT; \ 402 return get_EVP_MD(&once, &ossl_##name##_st, &ossl_##name, \
|
| /netbsd/src/external/gpl2/xcvs/dist/m4/ |
| D | onceonly_2_57.m4 | 9 dnl This file defines some "once only" variants of standard autoconf macros. 15 dnl will be put only once into the 'configure' file. It keeps the size of 25 dnl DEFAULTS and INIT_PREPARE in order to check all requested headers at once, 32 # AC_CHECK_HEADERS_ONCE(HEADER1 HEADER2 ...) is a once-only variant of 55 # AC_CHECK_FUNCS_ONCE(FUNC1 FUNC2 ...) is a once-only variant of 76 # AC_CHECK_DECLS_ONCE(DECL1 DECL2 ...) is a once-only variant of
|
| /netbsd/src/usr.bin/make/unit-tests/ |
| D | opt-debug-file.mk | 44 . info This goes to stderr only, once. 47 . info This goes to stderr only, once. 62 # expect: make: Unterminated quoted string [make 'This goes to stderr only, once.]
|
| D | include-main.mk | 20 .for i in once 38 .for i in once
|
| D | varname.mk | 70 ASDZguv= once 82 ASDZguv.param= once
|
| D | include-sub.inc | 12 .for i in once 43 .for i in once
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/ |
| D | threads_none.c | 65 int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void)) in CRYPTO_THREAD_run_once() argument 67 if (*once != 0) in CRYPTO_THREAD_run_once() 71 *once = 1; in CRYPTO_THREAD_run_once()
|
| D | threads_win.c | 134 int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void)) in CRYPTO_THREAD_run_once() argument 136 LONG volatile *lock = (LONG *)once; in CRYPTO_THREAD_run_once()
|
| D | threads_pthread.c | 152 int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void)) in CRYPTO_THREAD_run_once() argument 154 if (pthread_once(once, init) != 0) in CRYPTO_THREAD_run_once()
|
| /netbsd/src/crypto/external/bsd/openssl/dist/ms/ |
| D | applink.c | 105 static int once = 1; in OPENSSL_Applink() local 109 if (once) { in OPENSSL_Applink() 135 once = 0; in OPENSSL_Applink()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
| D | guard.cc | 65 static __gthread_once_t once = __GTHREAD_ONCE_INIT; in get_static_mutex() local 66 __gthread_once(&once, init); in get_static_mutex() 103 static __gthread_once_t once = __GTHREAD_ONCE_INIT; in get_static_cond() local 104 __gthread_once(&once, init_static_cond); in get_static_cond()
|
| D | atexit_thread.cc | 132 static __gthread_once_t once = __GTHREAD_ONCE_INIT; in __cxa_thread_atexit() local 133 __gthread_once (&once, key_init); in __cxa_thread_atexit()
|
| /netbsd/src/sys/arch/arm/gemini/ |
| D | obio_timer.c | 206 static int once=1; in obiotimer_attach() local 230 if (once) { in obiotimer_attach() 231 once = 0; in obiotimer_attach()
|
| /netbsd/src/sbin/devpubd/ |
| D | devpubd.c | 263 bool once = false; in main() local 272 once = true; in main() 303 if (!once) in main()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/doc/ |
| D | configterms.texi | 23 @command{configure} may (and once did) assume that the host you specify 57 The @code{libiberty} support library is built up to three times: once 58 for the host, once for the target (even if they are the same), and once
|
| /netbsd/src/common/dist/zlib/ |
| D | crc32.c | 238 local void once(once_t *state, void (*init)(void)) { in once() function 270 local void once(once_t *state, void (*init)(void)) { in once() function 553 once(&made, make_crc_table); in get_crc_table() 590 once(&made, make_crc_table); in crc32_z() 702 once(&made, make_crc_table); in crc32_z() 1025 once(&made, make_crc_table); in crc32_combine64() 1038 once(&made, make_crc_table); in crc32_combine_gen64()
|
| /netbsd/src/external/gpl3/gdb/dist/sim/mips/ |
| D | acinclude.m4 | 249 dnl Run igen twice, once for normal mode and once for mips16. 260 dnl Run igen thrice, once for micromips32, once for micromips16, 261 dnl and once for m32. 272 dnl Run igen thrice, once for micromips64, once for micromips16, 273 dnl and once for m64.
|
| /netbsd/src/common/lib/libc/arch/vax/gen/ |
| D | urem.S | 62 jcc Ldifference # if divisor goes in once, return difference 87 movl %r0,(%r3) # if divisor goes in once, store difference
|
| /netbsd/src/games/fortune/datfiles/ |
| D | limerick-o.real | 94 She once pushed a dwarf 404 A girl camper once had an affair 710 A man was once heard to boast, 825 A petulant man once said, "Pish, 1607 Only once every year, 1924 I once had the wife of a Dean 1928 Though the Bishop once managed thirteen." 1930 I once met a lassie named Ruth 1936 I once was annoyed by a queer 2368 Saint Peter was once heard to boast [all …]
|
| /netbsd/src/external/lgpl3/mpfr/dist/src/ |
| D | mpfr-thread.h | 224 MPFR_ONCE_CALL((_master)->once, (_master)->init_once) 227 MPFR_ONCE_DECL(once) \
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/src/ |
| D | Makefile.am | 358 all-once: libstdc++convenience.la $(STAMP_DEBUG) 359 install-data-once: $(STAMP_INSTALL_DEBUG) 361 all-local: all-once 362 install-data-local: install-data-once
|