Searched refs:initialized (Results 1 - 25 of 137) sorted by relevance

123456

/freebsd-11-stable/contrib/apr/misc/unix/
H A Dstart.c39 static int initialized = 0; variable
46 if (initialized++) {
78 initialized--;
79 if (initialized) {
/freebsd-11-stable/tools/regression/priv/
H A Dpriv_proc_setlogin.c46 static int initialized; variable
53 if (initialized)
60 initialized = 1;
86 if (initialized)
H A Dpriv_adjtime.c47 static int initialized; variable
54 if (initialized)
60 initialized = 1;
H A Dpriv_io.c54 static int initialized; variable
76 initialized = 1;
106 if (!initialized)
111 initialized = 0;
H A Dpriv_proc_setrlimit.c52 static int initialized; variable
77 initialized = 1;
167 if (initialized)
169 initialized = 0;
/freebsd-11-stable/bin/csh/
H A Diconv_stub.c48 static int initialized; variable
55 if (initialized) {
59 initialized = 1;
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_spinlock.c54 static int initialized; variable
79 if (!initialized)
80 PANIC("Spinlocks not initialized.");
110 if (initialized != 0) {
122 initialized = 1;
/freebsd-11-stable/contrib/libpcap/rpcapd/
H A Dlog.c98 static int initialized = 0;
106 if (!initialized) {
122 initialized = 1;
127 initialized = 1;
176 static int initialized = 0; local
179 if (!initialized) {
184 initialized = 1;
/freebsd-11-stable/lib/libc/locale/
H A DcXXrtomb_iconv.h43 bool initialized; member in struct:__anon6656
71 if (s == NULL || !cs->initialized) {
74 cs->initialized = false;
81 cs->initialized = true;
H A DmbrtocXX_iconv.h45 bool initialized; member in struct:__anon6663
74 if (s == NULL || !cs->initialized) {
77 cs->initialized = false;
84 cs->initialized = true;
/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_util.h47 int initialized; member in struct:__anon8894
H A Dvchiq_util.c48 queue->initialized = 1;
79 if (!queue->initialized)
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DAArch64ErrataFix.h44 bool initialized = false; member in class:lld::elf::AArch64Err843419Patcher
H A DARMErrataFix.h45 bool initialized = false; member in class:lld::elf::ARMErr657417Patcher
/freebsd-11-stable/crypto/openssl/crypto/rand/
H A Dmd_rand.c145 static int initialized = 0; variable
190 initialized = 0;
379 * Input into the hash function the local 'md' (which is initialized from
400 if (!initialized) {
402 initialized = (entropy >= ENTROPY_NEEDED);
408 if (!initialized) {
447 if (initialized)
540 if (initialized)
564 initialized = 0;
611 if (!initialized) {
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcache_config.c162 static svn_atomic_t initialized = 0; local
165 = svn_atomic__init_once(&initialized, initialize_cache, &cache, NULL);
/freebsd-11-stable/sys/dev/syscons/apm/
H A Dapm_saver.c61 if (!apm_softc.initialized || !apm_softc.active)
77 if (!apm_softc.initialized || !apm_softc.active)
/freebsd-11-stable/sys/i386/bios/
H A Dapm.h38 int initialized, active, running, bios_busy; member in struct:apm_softc
/freebsd-11-stable/sys/crypto/siphash/
H A Dsiphash.h64 uint8_t initialized; member in struct:_SIPHASH_CTX
H A Dsiphash.c70 ctx->initialized = 1;
79 ctx->initialized == 1,
80 ("%s: context %p not properly initialized", __func__, ctx));
90 ctx->initialized = 2;
127 KASSERT(ctx->initialized == 2,
128 ("%s: context %p not properly initialized", __func__, ctx));
174 KASSERT(ctx->initialized == 2,
175 ("%s: context %p not properly initialized", __func__, ctx));
186 KASSERT(ctx->initialized == 2,
187 ("%s: context %p not properly initialized", __func_
[all...]
/freebsd-11-stable/contrib/dma/
H A Dutil.c59 static int initialized = 0; local
62 if (initialized)
91 initialized = 1;
95 initialized = 1;
115 initialized = 1;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_libcdep_new.cpp110 CHECK(!initialized);
112 initialized = true;
119 if (!initialized) Initialize();
143 if (!initialized || !common_flags()->coverage) return;
148 bool initialized; member in class:__sancov::__anon1003::TracePcGuardController
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c108 NCURSES_EXPORT_VAR(SCREEN *) SP = NULL; /* Some linkers require initialized data... */
285 static bool initialized = FALSE; local
287 if (!initialized) {
288 initialized = TRUE;
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd.h86 bool initialized; \
92 bool initialized; \
306 wrapper->initialized) { \
307 wrapper->initialized = false; \
309 if (wrapper->initialized) { \
343 wrapper->initialized = false; \
414 wrapper->initialized = true; \
426 wrapper->initialized) { \
427 wrapper->initialized = false; \
429 if (wrapper->initialized) { \
[all...]
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dclock.c82 static int initialized = 0; variable
117 if (!initialized)
182 initialized = 1;

Completed in 206 milliseconds

123456