| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/ |
| H A D | OProfileWrapper.cpp | 50 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-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | tsd_exclusive.h | 22 Initialized, enumerator 31 DCHECK(!Initialized); in init() 35 Initialized = true; in init() 40 if (LIKELY(Initialized)) in initOnceMaybe() 59 Initialized = false; in unmapTestOnly() 84 if (LIKELY(State.InitState == ThreadState::Initialized && in getTSDAndLock() 136 State.InitState = ThreadState::Initialized; in initThread() 141 bool Initialized GUARDED_BY(Mutex) = false;
|
| H A D | tsd_shared.h | 30 DCHECK(!Initialized); in init() 37 Initialized = true; in init() 42 if (LIKELY(Initialized)) in initOnceMaybe() 54 Initialized = false; in unmapTestOnly() 244 bool Initialized GUARDED_BY(Mutex) = false;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | InitLLVM.cpp | 42 static std::atomic<bool> Initialized{false}; in InitLLVM() local 43 assert(!Initialized && "InitLLVM was already initialized!"); in InitLLVM() 44 Initialized = true; in InitLLVM()
|
| H A D | Statistic.cpp | 107 if (!Initialized.load(std::memory_order_relaxed)) { in RegisterStatistic() 112 if (Initialized.load(std::memory_order_relaxed)) in RegisterStatistic() 118 Initialized.store(true, std::memory_order_release); in RegisterStatistic() 164 Stat->Initialized = false; in reset()
|
| H A D | Signals.cpp | 83 enum class Status { Empty, Initializing, Initialized, Executing }; enumerator 100 auto Expected = CallbackAndCookie::Status::Initialized; in RunSignalHandlers() 121 SetMe.Flag.store(CallbackAndCookie::Status::Initialized); in insertSignalHandler()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Statistic.h | 57 std::atomic<bool> Initialized; variable 62 Initialized(false) {} in TrackingStatistic() 124 if (!Initialized.load(std::memory_order_acquire)) in init()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | OProfileWrapper.h | 59 bool Initialized; variable 82 Initialized(true) in OpenAgentFunc()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 121 Initialized = 0x1, /* 01 */ enumerator 593 if (AtPredExit == Initialized) in getUninitUse() 687 vals[VD] = Initialized; in VisitObjCForCollectionStmt() 708 vals[vd] = Initialized; in VisitBlockExpr() 723 vals.setAllScratchValues(Initialized); in VisitCallExpr() 746 vals[cast<VarDecl>(dr->getDecl())] = Initialized; in VisitDeclRefExpr() 761 vals[VD] = Initialized; in VisitBinaryOperator() 783 vals[VD] = Initialized; in VisitDeclStmt() 819 if (vals[VD] != Initialized) in VisitGCCAsmStmt()
|
| /freebsd-14.2/sys/contrib/dev/acpica/components/events/ |
| H A D | evgpeblk.c | 515 GpeBlock->Initialized = FALSE; in AcpiEvCreateGpeBlock() 611 if (!GpeBlock || GpeBlock->Initialized) in AcpiEvInitializeGpeBlock() 673 GpeBlock->Initialized = TRUE; in AcpiEvInitializeGpeBlock()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetPassConfig.h | 125 bool Initialized = false; // Flagged after all passes are configured. variable 162 void setInitialized() { Initialized = true; } in setInitialized()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | PrintPreprocessedOutput.cpp | 92 bool Initialized; member in __anon4bae9f8c0111::PrintPPOutputPPCallbacks 123 Initialized = false; in PrintPPOutputPPCallbacks() 373 if (!Initialized) { in FileChanged() 375 Initialized = true; in FileChanged()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZMCTargetDesc.cpp | 133 static bool Initialized = false; in getFirstReg() local 134 if (!Initialized) { in getFirstReg()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | StructurizeCFG.cpp | 1037 bool Initialized = false; in rebuildSSA() local 1052 if (!Initialized) { in rebuildSSA() 1057 Initialized = true; in rebuildSSA()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugFrame.cpp | 800 static bool Initialized = false; in getOperandTypes() local 801 if (Initialized) { in getOperandTypes() 804 Initialized = true; in getOperandTypes()
|
| /freebsd-14.2/usr.sbin/syslogd/ |
| H A D | syslogd.c | 378 static int Initialized; /* set when we have initialized ourselves */ variable 810 if (Initialized == 0) in main() 1640 if (!Initialized) { in logmsg() 2602 Initialized = 0; in init() 2654 Initialized = 1; in init() 2664 Initialized = 1; in init()
|
| /freebsd-14.2/usr.sbin/bsdconfig/share/packages/ |
| H A D | categories.subr | 203 f_dprintf "%s: Initialized %u package category descriptions." \
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Stmt.cpp | 58 static bool Initialized = false; in getStmtInfoTableEntry() local 59 if (Initialized) in getStmtInfoTableEntry() 63 Initialized = true; in getStmtInfoTableEntry()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetPassConfig.cpp | 659 assert(!Initialized && "PassConfig is immutable"); in setOpt() 689 assert(!Initialized && "PassConfig is immutable"); in addPass()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | BasicObjCFoundationChecks.cpp | 1148 mutable bool Initialized = false; member in __anon34a738ec0811::ObjCNonNilReturnValueChecker 1193 if (!Initialized) { in checkPostObjCMessage()
|
| /freebsd-14.2/sys/contrib/dev/acpica/include/ |
| H A D | aclocal.h | 702 BOOLEAN Initialized; /* TRUE if this block is initialized */ member
|
| /freebsd-14.2/usr.sbin/bsdconfig/share/ |
| H A D | geom.subr | 421 f_dprintf "%s: Initialized %u geom devices in %u classes." \
|
| H A D | device.subr | 1378 f_dprintf "%s: Initialized device catalog with %u names/descriptions." \
|
| /freebsd-14.2/contrib/libpcap/ |
| H A D | configure.ac | 43 # Initialized to LIBS. 50 # from our .pc file. Initialized to an empty string. 67 # they will be automatically loaded at run time. Initialized to an 73 # them. Initialized to an empty string. 80 # from our .pc file. Initialized to an empty string. 87 # file, so it has to come from our .pc file. Initialized to an empty
|
| /freebsd-14.2/lib/libc/db/mpool/ |
| H A D | mpool.libtp | 156 error_log0 ( "Initialized buffer region\n" );
|