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

1234

/freebsd-10.0-release/contrib/apr/misc/unix/
H A Dstart.c39 static int initialized = 0; variable
46 if (initialized++) {
78 initialized--;
79 if (initialized) {
/freebsd-10.0-release/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-10.0-release/bin/csh/
H A Diconv_stub.c48 static int initialized; variable
55 if (initialized) {
59 initialized = 1;
/freebsd-10.0-release/contrib/atf/atf-c/
H A Dconfig.c40 static bool initialized = false; variable
118 PRE(!initialized);
128 initialized = true;
141 if (!initialized) {
143 INV(initialized);
160 initialized = false;
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_spinlock.c54 static int initialized; variable
79 if (!initialized)
80 PANIC("Spinlocks not initialized.");
116 if (initialized != 0) {
128 initialized = 1;
/freebsd-10.0-release/lib/libc/locale/
H A DcXXrtomb_iconv.h43 bool initialized; member in struct:__anon5417
72 if (s == NULL || !cs->initialized) {
75 cs->initialized = false;
82 cs->initialized = true;
H A DmbrtocXX_iconv.h45 bool initialized; member in struct:__anon5425
74 if (s == NULL || !cs->initialized) {
77 cs->initialized = false;
84 cs->initialized = true;
/freebsd-10.0-release/lib/libkse/thread/
H A Dthr_spinlock.c66 static int initialized = 0; variable
95 if (!initialized)
96 PANIC("Spinlocks not initialized.");
142 if (initialized != 0) {
153 initialized = 1;
/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd.h198 bool initialized; \
211 wrapper->initialized) { \
214 wrapper->initialized = false; \
217 if (wrapper->initialized) { \
255 wrapper->initialized = false; \
284 wrapper->initialized = true; \
291 bool initialized; \
301 wrapper->initialized) { \
302 wrapper->initialized = false; \
304 if (wrapper->initialized) { \
[all...]
/freebsd-10.0-release/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-10.0-release/contrib/llvm/include/llvm/
H A DPassSupport.h134 static volatile sys::cas_flag initialized = 0; \
135 sys::cas_flag old_val = sys::CompareAndSwap(&initialized, 1, 0); \
140 TsanHappensBefore(&initialized); \
141 initialized = 2; \
144 sys::cas_flag tmp = initialized; \
147 tmp = initialized; \
151 TsanHappensAfter(&initialized);
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c106 NCURSES_EXPORT_VAR(SCREEN *) SP = NULL; /* Some linkers require initialized data... */
242 static bool initialized = FALSE; local
244 if (!initialized) {
245 initialized = TRUE;
/freebsd-10.0-release/contrib/ofed/management/libibmad/src/
H A Dregister.c61 static int initialized; local
63 if (!initialized) {
64 initialized++;
/freebsd-10.0-release/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-10.0-release/sys/i386/bios/
H A Dapm.h38 int initialized, active, running, bios_busy; member in struct:apm_softc
/freebsd-10.0-release/crypto/openssl/crypto/rand/
H A Dmd_rand.c144 static int initialized=0; variable
189 initialized=0;
373 * Input into the hash function the local 'md' (which is initialized from
394 if (!initialized)
397 initialized = 1;
580 if (!initialized)
583 initialized = 1;
/freebsd-10.0-release/sys/powerpc/aim/
H A Dclock.c82 static int initialized = 0; variable
117 if (!initialized)
166 initialized = 1;
/freebsd-10.0-release/sys/powerpc/booke/
H A Dclock.c83 static int initialized = 0; variable
118 if (!initialized)
164 initialized = 1;
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dlibieee.h59 bfd_boolean initialized; member in struct:ieee_per_section
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c109 mp->initialized = B_TRUE;
116 ASSERT(mp->initialized == B_TRUE);
120 mp->initialized = B_FALSE;
126 ASSERT(mp->initialized == B_TRUE);
134 ASSERT(mp->initialized == B_TRUE);
145 ASSERT(mp->initialized == B_TRUE);
159 ASSERT(mp->initialized == B_TRUE);
168 ASSERT(mp->initialized == B_TRUE);
183 rwlp->initialized = B_TRUE;
193 rwlp->initialized
[all...]
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Ddebug.c199 ** We keep a linked list of SM_DEBUG structures that have been initialized,
375 ** Ensures that the debug object is initialized.
391 goto initialized;
395 initialized:
414 ** Ensures that the debug object is initialized.

Completed in 301 milliseconds

1234