| /freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_initialize/ |
| HD | zpool_initialize_uninit.ksh | 32 # Starting, stopping, uninitializing, and restart an initialize works. 85 log_must zpool initialize -u $TESTPOOL 89 log_must zpool initialize $TESTPOOL 92 log_mustnot zpool initialize -u $TESTPOOL 95 log_must zpool initialize -c $TESTPOOL 98 log_must zpool initialize -u $TESTPOOL 102 log_must zpool initialize $TESTPOOL 105 log_mustnot zpool initialize -u $TESTPOOL 108 log_must zpool initialize -s $TESTPOOL 111 log_must zpool initialize -u $TESTPOOL [all …]
|
| HD | zpool_initialize_start_and_cancel_neg.ksh | 31 # Cancelling and suspending initialize doesn't work if not all specified vdevs 38 # 4. Try to re-initialize the currently initializing disk. 47 log_must zpool initialize $TESTPOOL $DISK1 50 log_fail "Initialize did not start" 52 log_mustnot zpool initialize -c $TESTPOOL $DISK2 53 log_mustnot zpool initialize -c $TESTPOOL $DISK2 $DISK3 55 log_mustnot zpool initialize -s $TESTPOOL $DISK2 56 log_mustnot zpool initialize -s $TESTPOOL $DISK2 $DISK3 58 log_mustnot zpool initialize $TESTPOOL $DISK1 60 log_pass "Nonsensical initialize operations fail"
|
| HD | zpool_initialize_start_and_cancel_pos.ksh | 31 # Starting and stopping an initialize works. 42 log_must zpool initialize $TESTPOOL 45 log_fail "Initialize did not start" 47 log_must zpool initialize -c $TESTPOOL 50 log_fail "Initialize did not stop" 52 log_pass "Initialize start + cancel works"
|
| HD | zpool_initialize_unsupported_vdevs.ksh | 31 # Attempting to initialize unsupported vdevs should fail. 43 # 2. Try to initialize vdev1, vdev2, and vdev3. Ensure that all 3 fail. 69 log_mustnot zpool initialize $TESTPOOL mirror-0 71 log_mustnot zpool initialize $TESTPOOL ${FDISKS[$n]} 74 log_pass "Attempting to initialize failed on unsupported devices"
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ |
| HD | PassSupport.h | 39 static void *initialize##passName##PassOnce(PassRegistry &Registry) { \ 46 static llvm::once_flag Initialize##passName##PassFlag; \ 47 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \ 48 llvm::call_once(Initialize##passName##PassFlag, \ 49 initialize##passName##PassOnce, std::ref(Registry)); \ 53 static void *initialize##passName##PassOnce(PassRegistry &Registry) { 55 #define INITIALIZE_PASS_DEPENDENCY(depName) initialize##depName##Pass(Registry); 57 initialize##depName##AnalysisGroup(Registry); 66 static llvm::once_flag Initialize##passName##PassFlag; \ 67 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \ [all …]
|
| HD | InitializePasses.h | 1 //===- llvm/InitializePasses.h - Initialize All Passes ----------*- C++ -*-===// 21 /// Initialize all passes linked into the Core library. 24 /// Initialize all passes linked into the TransformUtils library. 27 /// Initialize all passes linked into the ScalarOpts library. 30 /// Initialize all passes linked into the Vectorize library. 33 /// Initialize all passes linked into the InstCombine library. 36 /// Initialize all passes linked into the IPO library. 39 /// Initialize all passes linked into the Analysis library. 42 /// Initialize all passes linked into the CodeGen library. 45 /// Initialize all passes linked into the GlobalISel library. [all …]
|
| /freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/ |
| HD | zpool_wait_initialize_flag.ksh | 22 # -w flag for 'zpool initialize' waits for the completion of all and only those 28 # 'zpool initialize -w' 29 # 3. Start initializing disk 3 with a second invocation of 'zpool initialize -w' 58 log_bkgrnd zpool initialize -w $TESTPOOL $DISK1 $DISK2 60 log_bkgrnd zpool initialize -w $TESTPOOL $DISK3 72 log_must zpool initialize -c $TESTPOOL $DISK1 80 log_must zpool initialize -c $TESTPOOL $DISK3 85 log_must zpool initialize -c $TESTPOOL $DISK2 88 log_pass "'zpool initialize -w' works."
|
| HD | zpool_wait_multiple.ksh | 26 # 2. Alterate running two different activities (scrub and initialize), 57 log_bkgrnd zpool wait -t scrub,initialize $TESTPOOL 62 log_must zpool initialize $TESTPOOL $DISK1 68 log_must zpool initialize -s $TESTPOOL $DISK1 72 log_must zpool initialize $TESTPOOL $DISK1 80 log_must zpool initialize -s $TESTPOOL $DISK1
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| HD | DebugSubsectionVisitor.cpp | 36 if (auto EC = Fragment.initialize(Reader)) in visitDebugSubsection() 43 if (auto EC = Fragment.initialize(Reader)) in visitDebugSubsection() 50 if (auto EC = Fragment.initialize(Reader)) in visitDebugSubsection() 56 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection() 62 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection() 68 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection() 74 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection() 80 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection() 86 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
|
| /freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-server/ |
| HD | SystemInitializerLLGS.cpp | 56 llvm::Error SystemInitializerLLGS::Initialize() { in Initialize() function in SystemInitializerLLGS 57 if (auto e = SystemInitializerCommon::Initialize()) in Initialize() 60 HostObjectFile::Initialize(); in Initialize() 63 EmulateInstructionARM::Initialize(); in Initialize() 66 EmulateInstructionLoongArch::Initialize(); in Initialize() 69 EmulateInstructionMIPS::Initialize(); in Initialize() 72 EmulateInstructionMIPS64::Initialize(); in Initialize() 75 EmulateInstructionRISCV::Initialize(); in Initialize()
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Initialization/ |
| HD | SystemInitializerCommon.cpp | 44 llvm::Error SystemInitializerCommon::Initialize() { in Initialize() function in SystemInitializerCommon 69 Diagnostics::Initialize(); in Initialize() 70 FileSystem::Initialize(); in Initialize() 71 HostInfo::Initialize(m_shlib_dir_helper); in Initialize() 73 llvm::Error error = Socket::Initialize(); in Initialize() 79 process_gdb_remote::ProcessGDBRemoteLog::Initialize(); in Initialize() 83 ProcessPOSIXLog::Initialize(); in Initialize() 86 ProcessWindowsLog::Initialize(); in Initialize()
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/API/ |
| HD | SystemInitializerFull.cpp | 51 llvm::Error SystemInitializerFull::Initialize() { in Initialize() function in SystemInitializerFull 52 llvm::Error error = SystemInitializerCommon::Initialize(); in Initialize() 56 // Initialize LLVM and Clang in Initialize() 62 // Initialize the command line parser in LLVM. This usually isn't necessary in Initialize() 70 // Initialize the progress manager. in Initialize() 71 ProgressManager::Initialize(); in Initialize() 77 PluginManager::Initialize(); in Initialize() 80 // Settings must be initialized AFTER PluginManager::Initialize is called. in Initialize()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| HD | TargetSelect.h | 10 // linked into the main application executable, and initialize them as 115 /// initialize the native target corresponding to the host. This is useful 120 // If we have a native target, initialize it to ensure it is linked in. in InitializeNativeTarget() 132 /// this function to initialize the native target asm printer. 134 // If we have a native target, initialize the corresponding asm printer. in InitializeNativeTargetAsmPrinter() 144 /// this function to initialize the native target asm parser. 146 // If we have a native target, initialize the corresponding asm parser. in InitializeNativeTargetAsmParser() 156 /// this function to initialize the native target disassembler. 158 // If we have a native target, initialize the corresponding disassembler. in InitializeNativeTargetDisassembler() 168 /// this function to initialize the target CustomBehaviour and
|
| /freebsd-13-stable/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/ |
| HD | itdio.c | 189 /* initialize */ in tiINIIOStart() 192 /* let's initialize tdIOrequestBody */ in tiINIIOStart() 193 /* initialize callback */ in tiINIIOStart() 196 /* initialize tiDevhandle */ in tiINIIOStart() 199 /* initialize tiIORequest */ in tiINIIOStart() 205 /* initialize expDataLength */ in tiINIIOStart() 227 /* initialize agIORequest */ in tiINIIOStart() 234 initialize in tiINIIOStart() 346 /* initialize */ in tiINIIOStart() 348 /* initialize tiDevhandle */ in tiINIIOStart() [all …]
|
| /freebsd-13-stable/crypto/heimdal/doc/doxyout/hcrypto/man/man3/ |
| HD | hcrypto_des.3 | 260 \fIkey\fP a key to initialize the key schedule with. 262 \fIks\fP a key schedule to initialize. 324 \fIkey\fP a key to initialize the key schedule with. 326 \fIks\fP a key schedule to initialize. 341 \fIkey\fP a key to initialize the key schedule with. 343 \fIks\fP a key schedule to initialize. 360 \fIkey\fP a key to initialize the key schedule with. 362 \fIks\fP a key schedule to initialize.
|
| /freebsd-13-stable/share/man/man3/ |
| HD | pthread_rwlock_init.3 | 30 .Nd initialize a read/write lock 40 function is used to initialize a read/write lock, with attributes 63 initialize the lock. 65 Insufficient memory exists to initialize the lock. 76 The system has detected an attempt to re-initialize the object
|
| HD | pthread_spin_init.3 | 30 .Nd "initialize or destroy a spin lock" 42 function will initialize 84 An attempt to initialize or destroy 100 to initialize 103 Insufficient memory to initialize
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/ |
| HD | UnwindTable.cpp | 40 void UnwindTable::Initialize() { in Initialize() function in UnwindTable 89 return Initialize(); in Update() 163 Initialize(); in GetFuncUnwindersContainingAddress() 200 Initialize(); in GetUncachedFuncUnwindersContainingAddress() 222 Initialize(); in GetObjectFileUnwindInfo() 227 Initialize(); in GetEHFrameInfo() 232 Initialize(); in GetDebugFrameInfo() 237 Initialize(); in GetCompactUnwindInfo() 242 Initialize(); in GetArmUnwindInfo()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/ |
| HD | OProfileWrapper.cpp | 53 bool OProfileWrapper::initialize() { in initialize() function in llvm::OProfileWrapper 183 initialize(); in op_open_agent() 195 initialize(); in op_close_agent() 216 initialize(); in op_write_native_code() 229 initialize(); in op_write_debug_line_info() 239 initialize(); in op_major_version() 249 initialize(); in op_minor_version() 259 initialize(); in op_unload_native_code()
|
| /freebsd-13-stable/sys/contrib/openzfs/man/man8/ |
| HD | zpool-initialize.8 | 34 .Nm zpool-initialize 38 .Cm initialize 61 .Nm zpool Cm initialize 68 .Nm zpool Cm initialize 69 with no flags can be used to re-initialize all unallocoated regions on
|
| /freebsd-13-stable/stand/forth/ |
| HD | loader.4th | 171 s" /boot/defaults/loader.conf" initialize 174 \ If the user defined a post-initialize hook, call it now 175 s" post-initialize" sfind if execute else drop then 194 \ ***** initialize 200 : initialize ( -- flag ) 201 s" /boot/defaults/loader.conf" initialize 204 \ If the user defined a post-initialize hook, call it now 205 s" post-initialize" sfind if execute else drop then
|
| /freebsd-13-stable/contrib/nvi/cl/ |
| HD | cl_main.c | 61 /* Create and initialize the global structure. */ in main() 81 /* Create and initialize the CL_PRIVATE structure. */ in main() 85 * Initialize the terminal information. in main() 157 * Create and partially initialize the GS structure. 173 * Create and partially initialize the CL structure. 212 /* Initialize the list of curses functions. */ in cl_init() 220 * Initialize terminal information. 276 * Initialize signals. 360 * Initialize the standard curses functions.
|
| /freebsd-13-stable/sys/contrib/openzfs/module/zfs/ |
| HD | hkdf.c | 33 /* initialize HMAC mechanism */ in hkdf_sha512_extract() 38 /* initialize the salt as a crypto key */ in hkdf_sha512_extract() 43 /* initialize crypto data for the input and output data */ in hkdf_sha512_extract() 80 /* initialize HMAC mechanism */ in hkdf_sha512_expand() 85 /* initialize the salt as a crypto key */ in hkdf_sha512_expand() 90 /* initialize crypto data for the input and output data */ in hkdf_sha512_expand()
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/ |
| HD | avxintrin.h | 3680 /// A double-precision floating-point value used to initialize bits [255:192] 3683 /// A double-precision floating-point value used to initialize bits [191:128] 3686 /// A double-precision floating-point value used to initialize bits [127:64] 3689 /// A double-precision floating-point value used to initialize bits [63:0] 3707 /// A single-precision floating-point value used to initialize bits [255:224] 3710 /// A single-precision floating-point value used to initialize bits [223:192] 3713 /// A single-precision floating-point value used to initialize bits [191:160] 3716 /// A single-precision floating-point value used to initialize bits [159:128] 3719 /// A single-precision floating-point value used to initialize bits [127:96] 3722 /// A single-precision floating-point value used to initialize bits [95:64] [all …]
|
| /freebsd-13-stable/contrib/ntp/libntp/lib/isc/win32/ |
| HD | net.c | 115 initialize(void) { in initialize() function 121 initialize(); in isc_net_probeipv4() 127 initialize(); in isc_net_probeipv6() 315 initialize(); in isc_net_disableipv4() 322 initialize(); in isc_net_disableipv6() 329 initialize(); in isc_net_enableipv4() 336 initialize(); in isc_net_enableipv6()
|