/freebsd/sys/contrib/device-tree/src/arm/aspeed/ |
H A D | aspeed-bmc-ibm-rainier.dts | 374 retain-state-shutdown; 382 retain-state-shutdown; 456 retain-state-shutdown; 464 retain-state-shutdown; 493 retain-state-shutdown; 501 retain-state-shutdown; 598 retain-state-shutdown; 606 retain-state-shutdown; 614 retain-state-shutdown; 622 retain [all...] |
H A D | aspeed-bmc-ibm-everest.dts | 449 retain-state-shutdown; 457 retain-state-shutdown; 485 retain-state-shutdown; 493 retain-state-shutdown; 521 retain-state-shutdown; 529 retain-state-shutdown; 594 retain-state-shutdown; 602 retain-state-shutdown; 630 retain-state-shutdown; 638 retain [all...] |
H A D | aspeed-bmc-facebook-bletchley.dts | 70 retain-state-shutdown; 75 retain-state-shutdown; 80 retain-state-shutdown; 85 retain-state-shutdown; 90 retain-state-shutdown; 95 retain-state-shutdown; 100 retain-state-shutdown; 105 retain-state-shutdown; 114 retain-state-shutdown; 119 retain [all...] |
H A D | aspeed-bmc-opp-mowgli.dts | 119 retain-state-shutdown; 125 retain-state-shutdown; 131 retain-state-shutdown; 137 retain-state-shutdown; 143 retain-state-shutdown; 149 retain-state-shutdown; 155 retain-state-shutdown; 161 retain-state-shutdown;
|
H A D | aspeed-bmc-opp-witherspoon.dts | 117 retain-state-shutdown; 123 retain-state-shutdown; 129 retain-state-shutdown; 135 retain-state-shutdown; 141 retain-state-shutdown; 147 retain-state-shutdown; 153 retain-state-shutdown;
|
H A D | aspeed-bmc-opp-swift.dts | 146 retain-state-shutdown; 152 retain-state-shutdown; 158 retain-state-shutdown; 164 retain-state-shutdown; 170 retain-state-shutdown; 176 retain-state-shutdown; 182 retain-state-shutdown; 188 retain-state-shutdown;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCContract.cpp | 89 bool optimizeRetainCall(Function &F, Instruction *Retain); 123 bool ObjCARCContract::optimizeRetainCall(Function &F, Instruction *Retain) { in optimizeRetainCall() argument 124 const auto *Call = dyn_cast<CallBase>(GetArgRCIdentityRoot(Retain)); in optimizeRetainCall() 127 if (Call->getParent() != Retain->getParent()) in optimizeRetainCall() 130 // Check that the call is next to the retain. in optimizeRetainCall() 134 if (&*I != Retain) in optimizeRetainCall() 145 << *Retain << "\n"); in optimizeRetainCall() 148 // retain/retainRV have the same properties. in optimizeRetainCall() 150 cast<CallInst>(Retain)->setCalledFunction(Decl); in optimizeRetainCall() 152 LLVM_DEBUG(dbgs() << "New: " << *Retain << "\n"); in optimizeRetainCall() [all …]
|
H A D | ObjCARCOpts.cpp | 134 // The second retain and autorelease can be deleted. 160 // TODO: Delete release+retain pairs (rare). 166 "retain+autoreleases eliminated"); 167 STATISTIC(NumRRs, "Number of retain+release paths eliminated"); 497 /// retain/release pairs should be performed. 554 Instruction *Retain, 643 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeRetainRVCall() 1057 // Keep track of which of retain, release, autorelease, and retain_block in OptimizeIndividualCallImpl() 1107 case ARCInstKind::Retain: in OptimizeIndividualCallImpl() 1112 // These can't be moved across things that care about the retain in OptimizeIndividualCallImpl() [all …]
|
H A D | PtrState.h | 54 /// retain-decrement-use-release sequence or release-use-decrement-retain 60 /// there are retain-release pairs in code regions where the retain count 64 /// Also, a retain+release pair nested within another retain+release 87 /// retain/release pairs. 180 /// retain and the RCIdentity of this ptr state are the same.
|
H A D | ARCRuntimeEntryPoints.h | 40 Retain, enumerator 60 Retain = nullptr; in init() 79 case ARCRuntimeEntryPointKind::Retain: in get() 80 return getIntrinsicEntryPoint(Retain, Intrinsic::objc_retain); in get() 115 Function *Retain = nullptr; variable
|
H A D | PtrState.cpp | 179 // Theoretically we could implement removal of nested retain+release in InitBottomUp() 221 llvm_unreachable("bottom-up pointer in retain state!"); in MatchWithRetain() 248 llvm_unreachable("bottom-up pointer in retain state!"); in HandlePotentialAlterRefCount() 316 llvm_unreachable("bottom-up pointer in retain state!"); in HandlePotentialUse() 326 // Don't do retain+release tracking for ARCInstKind::RetainRV, because in InitTopDown() 332 // hopefully eliminated the second retain, which may allow us to in InitTopDown() 333 // eliminate the first retain too. in InitTopDown() 334 // Theoretically we could implement removal of nested retain+release in InitTopDown() 381 // to prevent sinking a retain past it. in HandlePotentialAlterRefCount()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntrusiveRefCntPtr.h | 55 /// - has Retain() and Release() methods, or 73 /// calls to Release() and Retain(), which increment and decrement the object's 98 void Retain() const { ++RefCount; } in Release() 131 void Retain() const { RefCount.fetch_add(1, std::memory_order_relaxed); } in Release() 141 /// Class you can specialize to provide custom retain/release functionality for 145 /// works with any type which defines Retain() and Release() functions -- you 155 /// T::Retain and T::Release. 163 static void retain(T *obj) { obj->Retain(); } 180 IntrusiveRefCntPtr(T *obj) : Obj(obj) { retain(); } 96 void Retain() const { ++RefCount; } Retain() function 127 void Retain() const { RefCount.fetch_add(1, std::memory_order_relaxed); } Retain() function 158 static void retain(T *obj) { obj->Retain(); } retain() function 217 void retain() { retain() function [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ObjCARCInstKind.cpp | 31 case ARCInstKind::Retain: in operator <<() 32 return OS << "ARCInstKind::Retain"; in operator <<() 114 return ARCInstKind::Retain; in GetFunctionClass() 316 case ARCInstKind::Retain: in IsUser() 346 case ARCInstKind::Retain: in IsRetain() 349 // I believe we treat retain block as not a retain since it can copy its in IsRetain() 385 case ARCInstKind::Retain: in IsAutorelease() 417 case ARCInstKind::Retain: in IsForwarding() 452 case ARCInstKind::Retain: in IsNoopOnNull() 487 case ARCInstKind::Retain: in IsNoopOnGlobal() [all …]
|
/freebsd/contrib/llvm-project/lld/docs/ELF/ |
H A D | start-stop-gc.rst | 15 reference from a live section retain all ``meta`` input sections. This 39 If a relocation is inconvenient, consider using ``__attribute__((retain))`` 46 __attribute__((retain,used,section("meta"))) 50 GCC before 11 and Clang before 13 do not recognize ``__attribute__((retain))``,
|
/freebsd/contrib/libxo/libxo/ |
H A D | xo_options.7 | 55 .It "no\-retain " "Prevent retaining formatting information" 57 .It "retain " "Force retaining formatting information" 114 .Fa no\-retain 117 to internally retain "compiled" information about formatting strings.
|
H A D | xo_emit_f.3 | 43 can retain the parsed internal information related to the given 48 To retain parsed format information, use the 70 retain this information until it is cleared or the process exits.
|
/freebsd/crypto/heimdal/doc/ |
H A D | copyright.texi | 32 1. Redistributions of source code must retain the above copyright 99 1. Redistributions of source code must retain the above copyright 140 1. Redistributions of source code must retain the above copyright 188 1. Redistributions of source code must retain the above copyright 226 1. Redistributions of source code must retain the above copyright 264 1. Redistributions of source code must retain the above copyright 297 1. Redistributions of source code must retain the above copyright 330 1. Redistributions of source code must retain the above copyright 453 - Redistributions of source code must retain the above copyright 492 * Redistributions of source code must retain the above copyright notice, this
|
/freebsd/sys/contrib/device-tree/Bindings/leds/ |
H A D | leds-gpio.yaml | 33 retain-state-suspended: 38 retain-state-shutdown: 40 Retain the state of the LED on shutdown. Useful in BMC systems, for
|
H A D | leds-lgm.yaml | 82 retain-state-suspended: 86 retain-state-shutdown: 88 description: Retain the state of the LED on shutdown.
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | RetainSummaryManager.h | 9 // This file defines summaries implementation for retain counting, which 75 /// The argument is a pointer to a retain-counted object; on exit, the new 79 /// The argument is a pointer to a retain-counted object; on exit, the new 83 /// The argument is a pointer to a retain-counted object; on exit, the new 87 /// The argument is a pointer to a retain-counted object; on exit, the new 117 /// An ArgEffect summarizes the retain count behavior on an argument or receiver 138 /// RetEffect summarizes a call's retain/release behavior with respect 143 /// Indicates that no retain count information is tracked for 150 /// Indicates that the returned value is an object with retain count 360 /// Test if two retain summaries are identical. Note that merely equivalent [all …]
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | TransRetainReleaseDealloc.cpp | 11 // Removes retain/release/autorelease/dealloc messages. 13 // return [[foo retain] autorelease]; 107 "it is not safe to remove 'retain' " in VisitObjCMessageExpr() 170 /// backingValue = [newValue retain]; // in general a +1 assign 174 /// [[var retain] autorelease]; 315 /// Check if the retain/release is due to a GCD/XPC macro that are 318 …in(object) ({ dispatch_object_t _o = (object); _dispatch_object_validate(_o); (void)[_o retain]; }) 320 …#define xpc_retain(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o retain]; })
|
/freebsd/contrib/libxo/doc/ |
H A D | options.rst | 53 no-retain Prevent retaining formatting information 57 retain Force retaining formatting information 81 - "no-retain" disables the ability of libxo to internally retain 82 "compiled" information about formatting strings (see :ref:`retain`
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
H A D | RetainCountDiagnostics.cpp | 60 return "Object with a +0 retain count returned to caller where a +1 " in getDescription() 61 "(owning) retain count is expected"; in getDescription() 135 os << " The object now has a +" << Count << " retain count."; in shouldGenerateNote() 154 "retain count transferred to caller)"; in shouldGenerateNote() 158 os << "Object returned to caller with a +0 retain count"; in shouldGenerateNote() 282 os << "+1 retain count"; in generateDiagnosticsForCallLike() 285 os << "+0 retain count"; in generateDiagnosticsForCallLike() 510 os << "NSArray literal is an object with a +0 retain count"; in VisitNode() 512 os << "NSDictionary literal is an object with a +0 retain count"; in VisitNode() 515 os << "NSNumber literal is an object with a +0 retain count"; in VisitNode() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | l2c2x0.yaml | 186 (forcibly enable), property absent (retain settings set by firmware) 193 <1> (forcibly enable), property absent (retain settings set by 202 preferably retain firmware settings) 209 preferably retain firmware settings)
|
/freebsd/sys/dev/bhnd/nvram/ |
H A D | bhnd_nvram_value.h | 8 * 1. Redistributions of source code must retain the above copyright 157 * When performing copy/retain, the existing structure must be copied 166 * When performing copy/retain, the existing structure may be retained 175 * When performing copy/retain, the existing structure may be referenced
|