Home
last modified time | relevance | path

Searched full:initialized (Results 1 – 25 of 2459) sorted by relevance

12345678910>>...99

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_initialize/
H A Dzpool_initialize_uninit.ksh91 status_check_all $TESTPOOL "[[:digit:]]* initialized"
94 status_check_all $TESTPOOL "[[:digit:]]* initialized"
104 status_check_all $TESTPOOL "[[:digit:]]* initialized"
107 status_check_all $TESTPOOL "[[:digit:]]* initialized"
117 status_check_all $TESTPOOL "[[:digit:]]* initialized"
122 status_check $TESTPOOL "uninitialized" "suspended" "[[:digit:]]* initialized"
125 status_check $TESTPOOL "uninitialized" "suspended" "[[:digit:]]* initialized"
128 status_check $TESTPOOL "uninitialized" "uninitialized" "[[:digit:]]* initialized"
131 status_check $TESTPOOL "[[:digit:]]* initialized" "uninitialized" "[[:digit:]]* initialized"
134 status_check_all $TESTPOOL "[[:digit:]]* initialized"
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h46 /// Describes an entity that is being initialized.
49 /// Specifies the kind of entity being initialized.
51 /// The entity being initialized is a variable.
54 /// The entity being initialized is a function parameter.
57 /// The entity being initialized is a non-type template parameter.
60 /// The entity being initialized is the result of a function call.
63 /// The entity being initialized is the result of a statement expression.
66 /// The entity being initialized is an exception object that
70 /// The entity being initialized is a non-static data member
74 /// The entity being initialized is an element of an array.
[all …]
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd_win.h7 bool initialized; member
26 if (wrapper->initialized) { in tsd_cleanup_wrapper()
27 wrapper->initialized = false; in tsd_cleanup_wrapper()
29 if (wrapper->initialized) { in tsd_cleanup_wrapper()
59 wrapper->initialized = false; in tsd_wrapper_get()
90 tsd_boot_wrapper.initialized = false; in tsd_boot1()
92 wrapper->initialized = false; in tsd_boot1()
138 wrapper->initialized = true; in tsd_set()
H A Dtsd_generic.h17 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()
88 wrapper->initialized = false; in tsd_wrapper_get()
129 tsd_boot_wrapper.initialized = false;
131 wrapper->initialized = false; in tsd_booted_get()
181 wrapper->initialized = true;
/freebsd/contrib/libcbor/src/cbor/
H A Dfloats_ctrls.h92 * initialized to one.
102 * initialized to one.
112 * initialized to one.
122 * initialized to one.
130 * initialized to one.
138 * initialized to one.
147 * initialized to one.
204 * initialized to one.
213 * initialized to one.
222 * initialized to one.
[all …]
H A Dstrings.h130 * The handle is initialized to `NULL` and length to 0
133 * initialized to one.
140 * The chunks array is initialized to `NULL` and chunkcount to 0
143 * initialized to one.
158 * initialized to one.
173 * initialized to one.
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp50 Initialized(false) { in OProfileWrapper()
59 if (Initialized) in initialize()
62 Initialized = true; in initialize()
182 if (!Initialized) in op_open_agent()
194 if (!Initialized) in op_close_agent()
215 if (!Initialized) in op_write_native_code()
228 if (!Initialized) in op_write_debug_line_info()
238 if (!Initialized) in op_major_version()
248 if (!Initialized) in op_minor_version()
258 if (!Initialized) in op_unload_native_code()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h22 Initialized, enumerator
56 DCHECK(!Initialized); in init()
60 Initialized = true; in init()
65 if (LIKELY(Initialized)) in initOnceMaybe()
67 init(Instance); // Sets Initialized. in initOnceMaybe()
84 Initialized = false; in unmapTestOnly()
136 if (LIKELY(State.InitState == ThreadState::Initialized && in getTSDAndLock()
156 State.InitState = ThreadState::Initialized; in initThread()
161 bool Initialized GUARDED_BY(Mutex) = false;
/freebsd/sys/dev/ice/
H A Dice_iflib_recovery_txrx.c61 * transmit or receive packets while the hardware is not initialized.
78 * Since the Tx queues are not initialized during recovery mode, this function
95 * Since the Tx queues are not initialized during recovery mode, this function
111 * Since the Tx queues are not initialized during recovery mode, this function
130 * Since the Rx queues are not initialized during recovery mode, this function
147 * Since the Rx queues are not initialized during recovery mode this function
163 * Since the Rx queues are not initialized during Recovery mode, this function
179 * Since the Rx queues are not initialized during Recovery mode, this function
/freebsd/sys/crypto/siphash/
H A Dsiphash.c67 ctx->initialized = 1; in SipHash_InitX()
76 ctx->initialized == 1, in SipHash_SetKey()
77 ("%s: context %p not properly initialized", __func__, ctx)); in SipHash_SetKey()
87 ctx->initialized = 2; in SipHash_SetKey()
129 KASSERT(ctx->initialized == 2, in SipHash_Update()
130 ("%s: context %p not properly initialized", __func__, ctx)); in SipHash_Update()
176 KASSERT(ctx->initialized == 2, in SipHash_Final()
177 ("%s: context %p not properly initialized", __func__, ctx));
188 KASSERT(ctx->initialized == 2, in SipHash_End()
189 ("%s: context %p not properly initialized", __func_ in SipHash_End()
[all...]
/freebsd/sys/contrib/libsodium/src/libsodium/randombytes/salsa20/
H A Drandombytes_salsa20_random.c82 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()
374 * Reseed the generator if it hasn't been initialized yet
381 if (stream.initialized == 0) { in randombytes_salsa20_random_stir_if_needed()
387 if (stream.initialized == 0) { in randombytes_salsa20_random_stir_if_needed()
[all …]
/freebsd/contrib/libpcap/rpcapd/
H A Dlog.c96 static int initialized = 0; in rpcapd_vlog_systemlog()
104 if (!initialized) { in rpcapd_vlog_systemlog()
120 initialized = 1; in rpcapd_vlog_systemlog()
125 initialized = 1; in rpcapd_vlog_systemlog()
174 static int initialized = 0; in rpcapd_vlog_systemlog() local
177 if (!initialized) { in rpcapd_vlog_systemlog()
182 initialized = 1; in rpcapd_vlog_systemlog()
/freebsd/share/man/man9/
H A Dkmsan.974 whether the source operand has been initialized.
133 which mark the range as initialized and uninitialized, respectively.
135 typically have been marked initialized; before the memory is reused for a new
139 mark device-written memory as initialized.
208 When kernel memory is allocated for some purpose, its origin is initialized
273 * here. If it is initialized, and "osz" was left uninitialized
283 * initialized and contains whatever data is left over from the
293 * not been initialized, e.g., by memset(), and this call will
332 that region of the kernel map is marked as initialized.
/freebsd/crypto/krb5/src/ccapi/lib/
H A Dccapi_ccache_iterator.c127 cc_uint32 initialized = 0; in ccapi_ccache_iterator_release() local
130 &initialized); in ccapi_ccache_iterator_release()
132 if (!err && initialized) { in ccapi_ccache_iterator_release()
169 cc_uint32 initialized = 0; in ccapi_ccache_iterator_next() local
172 &initialized); in ccapi_ccache_iterator_next()
174 if (!err && !initialized) { in ccapi_ccache_iterator_next()
209 cc_uint32 initialized = 0; in ccapi_ccache_iterator_clone() local
217 &initialized); in ccapi_ccache_iterator_clone()
221 if (initialized) { in ccapi_ccache_iterator_clone()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.h296 /// Whether the information on the target has been initialized.
390 assert(!TargetInitialized && "Target already initialized!"); in setTarget()
406 assert(TargetInitialized && "Target not initialized!"); in isTargetIPhoneOS()
412 assert(TargetInitialized && "Target not initialized!"); in isTargetIOSSimulator()
418 assert(TargetInitialized && "Target not initialized!"); in isTargetIOSBased()
433 assert(TargetInitialized && "Target not initialized!"); in isTargetTvOS()
438 assert(TargetInitialized && "Target not initialized!"); in isTargetTvOSSimulator()
443 assert(TargetInitialized && "Target not initialized!"); in isTargetTvOSBased()
448 assert(TargetInitialized && "Target not initialized!"); in isTargetWatchOS()
453 assert(TargetInitialized && "Target not initialized!"); in isTargetWatchOSSimulator()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp55 // Initialized TLS data. in printSwitchToSection()
57 // We only expect XMC_TL here for initialized TLS data. in printSwitchToSection()
103 // Common symbols and local zero-initialized symbols for TLS and Non-TLS are in printSwitchToSection()
105 // TLS common and zero-initialized local symbols since linkage type (in the in printSwitchToSection()
111 // zero-initialized TLS data. The '.comm' and '.lcomm' directives of the in printSwitchToSection()
116 // Zero-initialized TLS data with weak or external linkage are not eligible to in printSwitchToSection()
/freebsd/sys/dev/qlnx/qlnxe/
H A Discsi_common.h243 …__le32 exp_r2t_sn /* Initiator mode - Expected R2T PDU index in sequence. [variable, initialized 0…
329 struct regpair lun /* Logical Unit Number. [constant, initialized] */;
330 __le32 itt /* Initiator Task Tag (only 2 bytes are significant). [constant, initialized] */;
332 __le32 cmd_sn /* CmdSn. [constant, initialized] */;
333 __le32 exp_stat_sn /* various fields for middle-path PDU. [constant, initialized] */;
334 __le32 cdb[4] /* CDB. [constant, initialized] */;
354 u8 opcode /* opcode. [constant, initialized] */;
360 struct regpair lun /* Logical Unit Number. [constant, initialized] */;
361 __le32 itt /* Initiator Task Tag (only 2 bytes are significant). [constant, initialized] */;
363 __le32 cmd_sn /* CmdSn. [constant, initialized] */;
[all …]
/freebsd/lib/libthr/thread/
H A Dthr_spinlock.c53 static int initialized; variable
78 if (!initialized) in __thr_spinlock()
79 PANIC("Spinlocks not initialized."); in __thr_spinlock()
109 if (initialized != 0) { in _thr_spinlock_init()
121 initialized = 1; in _thr_spinlock_init()
/freebsd/lib/libc/gen/
H A Dgetcontext.384 which must have been previously initialized by a call to
92 was initialized by
100 was initialized by
118 was initialized by the invocation of a signal handler, execution continues
128 returns pointer to the allocated and initialized context on success, and
/freebsd/lib/libc/stdlib/
H A Drandom.360 Unless initialized with less than 32 bytes of state, the
72 If initialized with less than 32 bytes of state,
88 is implicitly initialized as if
137 Once a state array has been initialized, it may be restarted at a
151 it is initialized.
/freebsd/sys/contrib/libsodium/src/libsodium/randombytes/sysrandom/
H A Drandombytes_sysrandom.c95 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/crypto/openssl/doc/man3/
H A DBF_encrypt.pod66 for the same message. B<ivec> may be initialized with anything, but the
67 recipient needs to know what it was initialized with, or it won't be able
69 B<ivec> is simply initialized to zero.
75 offset in B<ivec> is stored between calls. This integer must be initialized
76 to zero when B<ivec> is initialized.
92 It uses the same parameters as BF_cfb64_encrypt(), which must be initialized
/freebsd/secure/lib/libcrypto/man/man3/
H A DBF_encrypt.3127 for the same message. \fBivec\fR may be initialized with anything, but the
128 recipient needs to know what it was initialized with, or it won't be able
130 \&\fBivec\fR is simply initialized to zero.
136 offset in \fBivec\fR is stored between calls. This integer must be initialized
137 to zero when \fBivec\fR is initialized.
153 It uses the same parameters as \fBBF_cfb64_encrypt()\fR, which must be initialized
/freebsd/sys/kgssapi/
H A Dgss_names.c40 * GSS_C_NT_USER_NAME should be initialized to point
56 * initialized to point to that gss_OID_desc.
71 * initialized to point to that gss_OID_desc.
84 * GSS_C_NT_HOSTBASED_SERVICE_X should be initialized to point
106 * GSS_C_NT_HOSTBASED_SERVICE should be initialized
120 * and GSS_C_NT_ANONYMOUS should be initialized to point
134 * GSS_C_NT_EXPORT_NAME should be initialized to point
/freebsd/sys/powerpc/include/
H A Dpcb.h58 #define PCB_FPREGS 0x2 /* Process had FPU registers initialized */
60 #define PCB_VSX 0x8 /* Process had VSX initialized */
61 #define PCB_CDSCR 0x10 /* Process had Custom DSCR initialized */
62 #define PCB_HTM 0x20 /* Process had HTM initialized */
66 #define PCB_VECREGS 0x200 /* Process had Altivec registers initialized */

12345678910>>...99