| /freebsd-13.1/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | tsd_generic.h | 17 bool initialized; member 35 if (wrapper->initialized) { in tsd_cleanup_wrapper() 36 wrapper->initialized = false; in tsd_cleanup_wrapper() 38 if (wrapper->initialized) { in tsd_cleanup_wrapper() 79 wrapper->initialized = false; in tsd_wrapper_get() 110 tsd_boot_wrapper.initialized = false; in tsd_boot1() 112 wrapper->initialized = false; in tsd_boot1() 162 wrapper->initialized = true; in tsd_set()
|
| /freebsd-13.1/contrib/libpcap/rpcapd/ |
| H A D | log.c | 98 static int initialized = 0; in rpcapd_vlog_systemlog() 106 if (!initialized) { in rpcapd_vlog_systemlog() 122 initialized = 1; in rpcapd_vlog_systemlog() 127 initialized = 1; in rpcapd_vlog_systemlog() 176 static int initialized = 0; in rpcapd_vlog_systemlog() local 179 if (!initialized) { in rpcapd_vlog_systemlog() 184 initialized = 1; in rpcapd_vlog_systemlog()
|
| /freebsd-13.1/sys/contrib/libsodium/src/libsodium/randombytes/salsa20/ |
| H A D | randombytes_salsa20_random.c | 82 int initialized; member 92 int initialized; member 100 SODIUM_C99(.initialized =) 0, 105 SODIUM_C99(.initialized =) 0, 334 if (global.initialized == 0) { in randombytes_salsa20_random_stir() 336 global.initialized = 1; in randombytes_salsa20_random_stir() 370 stream.initialized = 1; in randombytes_salsa20_random_stir() 381 if (stream.initialized == 0) { in randombytes_salsa20_random_stir_if_needed() 387 if (stream.initialized == 0) { in randombytes_salsa20_random_stir_if_needed() 404 global.initialized = 0; in randombytes_salsa20_random_close() [all …]
|
| /freebsd-13.1/contrib/apr/misc/unix/ |
| H A D | start.c | 39 static int initialized = 0; variable 46 if (initialized++) { in apr_initialize() 78 initialized--; in apr_terminate() 79 if (initialized) { in apr_terminate()
|
| /freebsd-13.1/tools/regression/priv/ |
| H A D | priv_proc_setlogin.c | 46 static int initialized; variable 53 if (initialized) in priv_proc_setlogin_setup() 60 initialized = 1; in priv_proc_setlogin_setup() 86 if (initialized) in priv_proc_setlogin_cleanup()
|
| H A D | priv_io.c | 54 static int initialized; variable 76 initialized = 1; in priv_io_setup() 106 if (!initialized) in priv_io_cleanup() 111 initialized = 0; in priv_io_cleanup()
|
| H A D | priv_proc_setrlimit.c | 52 static int initialized; variable 77 initialized = 1; in priv_proc_setrlimit_setup() 167 if (initialized) in priv_proc_setrlimit_cleanup() 169 initialized = 0; in priv_proc_setrlimit_cleanup()
|
| H A D | priv_adjtime.c | 47 static int initialized; variable 54 if (initialized) in priv_adjtime_setup() 60 initialized = 1; in priv_adjtime_setup()
|
| /freebsd-13.1/sys/contrib/libsodium/src/libsodium/randombytes/sysrandom/ |
| H A D | randombytes_sysrandom.c | 95 int initialized; member 101 SODIUM_C99(.initialized =) 0, 283 if (stream.initialized == 0) { in randombytes_sysrandom_stir() 285 stream.initialized = 1; in randombytes_sysrandom_stir() 292 if (stream.initialized == 0) { in randombytes_sysrandom_stir_if_needed() 306 stream.initialized = 0; in randombytes_sysrandom_close() 315 if (stream.initialized != 0) { in randombytes_sysrandom_close() 316 stream.initialized = 0; in randombytes_sysrandom_close()
|
| /freebsd-13.1/contrib/dma/ |
| H A D | util.c | 61 static int initialized = 0; in hostname() local 64 if (initialized) in hostname() 93 initialized = 1; in hostname() 97 initialized = 1; in hostname() 104 initialized = 1; in hostname() 115 static int initialized = 0; in systemhostname() local 118 if (initialized) in systemhostname() 136 initialized = 1; in systemhostname()
|
| /freebsd-13.1/lib/libthr/thread/ |
| H A D | thr_spinlock.c | 56 static int initialized; variable 81 if (!initialized) in __thr_spinlock() 112 if (initialized != 0) { in _thr_spinlock_init() 124 initialized = 1; in _thr_spinlock_init()
|
| /freebsd-13.1/lib/libc/locale/ |
| H A D | cXXrtomb_iconv.h | 45 bool initialized; member 73 if (s == NULL || !cs->initialized) { in cXXrtomb_l() 76 cs->initialized = false; in cXXrtomb_l() 83 cs->initialized = true; in cXXrtomb_l()
|
| H A D | mbrtocXX_iconv.h | 47 bool initialized; member 76 if (s == NULL || !cs->initialized) { in mbrtocXX_l() 79 cs->initialized = false; in mbrtocXX_l() 86 cs->initialized = true; in mbrtocXX_l()
|
| /freebsd-13.1/sys/crypto/siphash/ |
| H A D | siphash.c | 70 ctx->initialized = 1; in SipHash_InitX() 79 ctx->initialized == 1, in SipHash_SetKey() 90 ctx->initialized = 2; in SipHash_SetKey() 127 KASSERT(ctx->initialized == 2, in SipHash_Update() 174 KASSERT(ctx->initialized == 2, in SipHash_Final() 186 KASSERT(ctx->initialized == 2, in SipHash_End()
|
| /freebsd-13.1/bin/csh/ |
| H A D | iconv_stub.c | 48 static int initialized; variable 55 if (initialized) { in dl_iconv_open() 59 initialized = 1; in dl_iconv_open()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_mutex.cpp | 146 int initialized; member 205 if (initialized != 0) in Initialize() 206 return initialized > 0; in Initialize() 207 initialized = -1; in Initialize() 211 initialized = mutex_type_count ? 1 : -1; in Initialize() 212 return initialized > 0; in Initialize()
|
| H A D | sanitizer_coverage_libcdep_new.cpp | 110 CHECK(!initialized); in Initialize() 112 initialized = true; in Initialize() 119 if (!initialized) Initialize(); in InitTracePcGuard() 143 if (!initialized || !common_flags()->coverage) return; in Dump() 148 bool initialized; member in __sancov::__anon31dc03c60111::TracePcGuardController
|
| /freebsd-13.1/sys/powerpc/powerpc/ |
| H A D | clock.c | 85 static int initialized = 0; variable 129 if (!initialized) in decr_intr() 197 initialized = 1; in decr_init() 242 return (initialized == 1); in decr_vdso_timehands() 252 return (initialized == 1); in decr_vdso_timehands32()
|
| /freebsd-13.1/contrib/ntp/lib/isc/win32/ |
| H A D | entropy.c | 139 if (ent->initialized < THRESHOLD_BITS) in fillpool() 140 needed = ISC_MAX(needed, THRESHOLD_BITS - ent->initialized); in fillpool() 220 if (ent->initialized < THRESHOLD_BITS) in fillpool() 221 ent->initialized += added; in fillpool()
|
| /freebsd-13.1/contrib/ntp/lib/isc/ |
| H A D | hash.c | 94 isc_boolean_t initialized; member 188 hctx->initialized = ISC_FALSE; in isc_hash_ctxcreate() 245 if (hctx->initialized == ISC_TRUE) in isc_hash_ctxinit() 278 hctx->initialized = ISC_TRUE; in isc_hash_ctxinit() 370 if (hctx->initialized == ISC_FALSE) in hash_calc()
|
| /freebsd-13.1/sys/contrib/libsodium/src/libsodium/sodium/ |
| H A D | core.c | 39 static volatile int initialized; variable 48 if (initialized != 0) { in sodium_init() 63 initialized = 1; in sodium_init()
|
| /freebsd-13.1/crypto/openssh/openbsd-compat/ |
| H A D | bsd-pselect.c | 81 static int initialized; in pselect_notify_setup() local 83 if (initialized && notify_pid == getpid()) in pselect_notify_setup() 107 initialized = 1; in pselect_notify_setup()
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | BF_encrypt.pod | 58 for the same message. B<ivec> may be initialized with anything, but the 59 recipient needs to know what it was initialized with, or it won't be able 61 B<ivec> is simply initialized to zero. 67 offset in B<ivec> is stored between calls. This integer must be initialized 68 to zero when B<ivec> is initialized. 84 It uses the same parameters as BF_cfb64_encrypt(), which must be initialized
|
| /freebsd-13.1/contrib/ncurses/ncurses/tinfo/ |
| H A D | lib_data.c | 303 static bool initialized = FALSE; in init_global_mutexes() local 305 if (!initialized) { in init_global_mutexes() 306 initialized = TRUE; in init_global_mutexes()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | cache_config.c | 162 static svn_atomic_t initialized = 0; in svn_cache__get_global_membuffer_cache() local 165 = svn_atomic__init_once(&initialized, initialize_cache, &cache, NULL); in svn_cache__get_global_membuffer_cache()
|