Home
last modified time | relevance | path

Searched refs:FA (Results 1 – 25 of 129) sorted by relevance

123456

/freebsd/contrib/llvm-project/clang/lib/Edit/
H A DEditedSource.cpp75 FileEditsTy::iterator FA = getActionForOffset(Offs); in canInsertInOffset() local
76 if (FA != FileEdits.end()) { in canInsertInOffset()
77 if (FA->first != Offs) in canInsertInOffset()
127 FileEdit &FA = FileEdits[Offs]; in commitInsert() local
128 if (FA.Text.empty()) { in commitInsert()
129 FA.Text = copyString(text); in commitInsert()
134 FA.Text = copyString(Twine(text) + FA.Text); in commitInsert()
136 FA.Text = copyString(Twine(FA.Text) + text); in commitInsert()
156 FileEdit &FA = I->second; in commitInsertFromRange() local
158 FileOffset E = B.getWithOffset(FA.RemoveLen); in commitInsertFromRange()
[all …]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DVisitor.cpp160 auto [ObjCIVR, FA] = in recordObjCInstanceVariables()
162 Ctx.Verifier->verify(ObjCIVR, FA, SuperClass); in recordObjCInstanceVariables()
184 auto [Class, FA] = in VisitObjCInterfaceDecl()
186 Ctx.Verifier->verify(Class, FA); in VisitObjCInterfaceDecl()
244 auto [GR, FA] = Ctx.Slice->addGlobal(getMangledName(D), Linkage, in VisitVarDecl()
247 Ctx.Verifier->verify(GR, FA); in VisitVarDecl()
297 auto [GR, FA] = in VisitFunctionDecl()
300 Ctx.Verifier->verify(GR, FA); in VisitFunctionDecl()
490 auto [GR, FA] = Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in emitVTableSymbols()
493 Ctx.Verifier->verify(GR, FA); in emitVTableSymbols()
[all …]
H A DDylibVerifier.cpp31 const FrontendAttrs *FA = nullptr; member
179 if (!SymCtx.FA->Avail.isObsoleted()) in shouldIgnoreObsolete()
184 SymCtx.FA, &Ctx.Diag->getSourceManager(), Ctx.Target}); in shouldIgnoreObsolete()
219 if (!(Zippered && SymCtx.FA->Avail.isUnavailable())) in shouldIgnoreZipperedAvailability()
225 ZipperedDeclSource{SymCtx.FA, SourceManagers.back().get(), Ctx.Target}); in shouldIgnoreZipperedAvailability()
249 Ctx.Diag->Report(SymCtx.FA->Loc, PrintAsWarning in compareObjCInterfaceSymbols()
256 Ctx.Diag->Report(SymCtx.FA->Loc, PrintAsWarning in compareObjCInterfaceSymbols()
305 Ctx.Diag->Report(SymCtx.FA->Loc, diag::err_library_missing_symbol) in compareVisibility()
312 Ctx.Diag->Report(SymCtx.FA->Loc, diag::err_library_hidden_symbol) in compareVisibility()
326 if (shouldIgnorePrivateExternAttr(SymCtx.FA->D)) in compareVisibility()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericJITLinkMemoryManager.h72 static size_t size(const jitlink::JITLinkMemoryManager::FinalizedAlloc &FA) { in size() argument
73 return SPSArgList<SPSExecutorAddr>::size(ExecutorAddr(FA.getAddress())); in size()
78 const jitlink::JITLinkMemoryManager::FinalizedAlloc &FA) { in serialize() argument
80 OB, ExecutorAddr(FA.getAddress())); in serialize()
84 jitlink::JITLinkMemoryManager::FinalizedAlloc &FA) { in deserialize() argument
88 FA = jitlink::JITLinkMemoryManager::FinalizedAlloc(A); in deserialize()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMapperJITLinkMemoryManager.cpp151 for (auto &FA : Allocs) { in deallocate() local
152 ExecutorAddr Addr = FA.getAddress(); in deallocate()
164 for (auto &FA : Allocs) in deallocate() local
165 FA.release(); in deallocate()
173 for (auto &FA : Allocs) { in deallocate() local
174 ExecutorAddr Addr = FA.getAddress(); in deallocate()
180 FA.release(); in deallocate()
H A DEPCIndirectionUtils.cpp126 auto FA = Alloc->finalize(); in grow() local
127 if (!FA) in grow()
128 return FA.takeError(); in grow()
130 TrampolineBlocks.push_back(std::move(*FA)); in grow()
310 auto FA = Alloc->finalize(); in writeResolverBlock() local
311 if (!FA) in writeResolverBlock()
312 return FA.takeError(); in writeResolverBlock()
314 ResolverBlock = std::move(*FA); in writeResolverBlock()
379 auto FA = Alloc->finalize(); in getIndirectStubs() local
380 if (!FA) in getIndirectStubs()
[all …]
H A DObjectLinkingLayer.cpp364 Error notifyEmitted(jitlink::JITLinkMemoryManager::FinalizedAlloc FA) { in notifyEmitted() argument
370 if (FA) in notifyEmitted()
372 joinErrors(std::move(Err), Layer.MemMgr.deallocate(std::move(FA))); in notifyEmitted()
376 if (FA) in notifyEmitted()
377 return Layer.recordFinalizedAlloc(*MR, std::move(FA)); in notifyEmitted()
736 MaterializationResponsibility &MR, FinalizedAlloc FA) { in recordFinalizedAlloc() argument
738 [&](ResourceKey K) { Allocs[K].push_back(std::move(FA)); }); in recordFinalizedAlloc()
741 Err = joinErrors(std::move(Err), MemMgr.deallocate(std::move(FA))); in recordFinalizedAlloc()
H A DDebugObjectManagerPlugin.cpp172 OnFinalize = std::move(OnFinalize)](Expected<FinalizedAlloc> FA) { in finalizeAsync() argument
173 if (FA) { in finalizeAsync()
174 Alloc = std::move(*FA); in finalizeAsync()
177 OnFinalize(FA.takeError()); in finalizeAsync()
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DDylibVerifier.h35 const FrontendAttrs *FA; member
89 Result verify(GlobalRecord *R, const FrontendAttrs *FA);
90 Result verify(ObjCInterfaceRecord *R, const FrontendAttrs *FA);
91 Result verify(ObjCIVarRecord *R, const FrontendAttrs *FA,
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp450 auto *FA = Alloc.release().toPtr<FinalizedAllocInfo *>(); in deallocate() local
451 StandardSegmentsList.push_back(std::move(FA->StandardSegments)); in deallocate()
452 DeallocActionsList.push_back(std::move(FA->DeallocActions)); in deallocate()
453 FA->~FinalizedAllocInfo(); in deallocate()
454 FinalizedAllocInfos.Deallocate(FA); in deallocate()
487 auto *FA = FinalizedAllocInfos.Allocate<FinalizedAllocInfo>(); in createFinalizedAlloc() local
488 new (FA) FinalizedAllocInfo( in createFinalizedAlloc()
490 return FinalizedAlloc(orc::ExecutorAddr::fromPtr(FA)); in createFinalizedAlloc()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCExpr.cpp615 const MCFragment *FA = SA.getFragment(); in AttemptToFoldSymbolOffsetDifference() local
617 const MCSection &SecA = *FA->getParent(); in AttemptToFoldSymbolOffsetDifference()
634 if (FA == FB && !SA.isVariable() && !SB.isVariable()) { in AttemptToFoldSymbolOffsetDifference()
660 if (FA == FB) in AttemptToFoldSymbolOffsetDifference()
663 Reverse = FA->getLayoutOrder() < FB->getLayoutOrder(); in AttemptToFoldSymbolOffsetDifference()
668 std::swap(FA, FB); in AttemptToFoldSymbolOffsetDifference()
683 if (&*FI != FA || SAOffset == DF->getContents().size()) in AttemptToFoldSymbolOffsetDifference()
688 if (&*FI == FA) { in AttemptToFoldSymbolOffsetDifference()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversalWriter.cpp308 for (FatArchTy &FA : FatArchList) in writeUniversalBinaryToStream()
309 MachO::swapStruct(FA); in writeUniversalBinaryToStream()
314 for (FatArchTy &FA : FatArchList) in writeUniversalBinary()
315 MachO::swapStruct(FA); in writeUniversalBinary()
/freebsd/contrib/netbsd-tests/ipf/input/
H A Df119 in on e0 tcp 1.1.1.1,1 2.1.2.2,23 FA seq=2 ack=102
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp196 auto FA = OrdMap.find(InA); in getAllReachingDefs() local
197 if (FA != OrdMap.end()) in getAllReachingDefs()
198 return FA->second < OrdMap.find(InB)->second; in getAllReachingDefs()
464 NodeAddr<FuncNode *> FA = DFG.getFunc(); in computePhiInfo() local
465 NodeList Blocks = FA.Addr->members(DFG); in computePhiInfo()
781 NodeAddr<FuncNode *> FA = DFG.getFunc(); in computeLiveIns() local
782 NodeList Blocks = FA.Addr->members(DFG); in computeLiveIns()
/freebsd/tools/tools/nanobsd/pcengines/Files/root/
H A D.cshrc10 alias lf ls -FA
/freebsd/secure/caroot/trusted/
H A DDigiCert_Global_Root_G2.pem54 4E:22:54:20:18:95:E6:E3:6E:E6:0F:FA:FA:B9:12:ED:06:17:8F:39
H A DD-TRUST_Root_Class_3_CA_2_EV_2009.pem76 SHA1 Fingerprint=96:C9:1B:0B:95:B4:10:98:42:FA:D0:D8:22:79:FE:60:FA:B9:16:83
H A DBuypass_Class_3_Root_CA.pem102 SHA1 Fingerprint=DA:FA:F7:FA:66:84:EC:06:8F:14:50:BD:C7:C2:81:A5:BC:A9:64:57
H A DDigiCert_TLS_ECC_P384_Root_G5.pem40 C1:51:45:50:59:AB:3E:E7:2C:5A:FA:20:22:12:07:80:88:7C:11:6A
H A DCertum_Trusted_Network_CA_2.pem69 B6:A1:54:39:02:C3:A0:3F:8E:8A:BC:FA:D4:F8:1C:A6:D1:3A:0E:FD
103 SHA1 Fingerprint=D3:DD:48:3E:2B:BF:4C:05:E8:AF:10:F5:FA:76:26:CF:D3:DC:30:92
/freebsd/tools/tools/nanobsd/rescue/Files/root/
H A D.cshrc8 a lf ls -FA
/freebsd/share/skel/
H A Ddot.cshrc11 alias lf ls -FA
/freebsd/bin/csh/
H A Ddot.cshrc11 alias lf ls -FA
/freebsd/secure/caroot/untrusted/
H A DGeoTrust_Universal_CA_2.pem67 76:F3:55:E1:FA:A4:36:FB:F0:9F:5C:62:71:ED:3C:F4:47:38:10:2B
69 76:F3:55:E1:FA:A4:36:FB:F0:9F:5C:62:71:ED:3C:F4:47:38:10:2B
/freebsd/crypto/heimdal/lib/wind/
H A DCompositionExclusions-3.2.0.txt24 095E # DEVANAGARI LETTER FA
34 0A5E # GURMUKHI LETTER FA

123456