| /src/contrib/llvm-project/clang/lib/Edit/ ! |
| H A D | EditedSource.cpp | 75 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 …]
|
| /src/contrib/llvm-project/clang/lib/InstallAPI/ ! |
| H A D | Visitor.cpp | 160 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 D | DylibVerifier.cpp | 31 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 …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ ! |
| H A D | EPCGenericJITLinkMemoryManager.h | 72 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()
|
| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ ! |
| H A D | MapperJITLinkMemoryManager.cpp | 151 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 D | EPCIndirectionUtils.cpp | 126 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 D | ObjectLinkingLayer.cpp | 364 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 D | DebugObjectManagerPlugin.cpp | 172 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()
|
| /src/contrib/llvm-project/clang/include/clang/InstallAPI/ ! |
| H A D | DylibVerifier.h | 35 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,
|
| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ ! |
| H A D | JITLinkMemoryManager.cpp | 450 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()
|
| /src/crypto/krb5/src/lib/crypto/builtin/aes/ ! |
| H A D | kresults.expected | 19 E1 43 64 CB 16 D3 FF CF E8 FA 6A 2C EC A2 69 34 70 FA 1B E1 F3 A1 32 DE F4 C4 F1 67 02 38 85 5C 11 72 77 C3 CB 18 F5 AA 0D B9 9B 74 BB D3 FA 18 E5 29 139 FA 1B E1 F3 A1 32 DE F4 C4 F1 67 02 38 85 5C 11 141 77 C3 CB 18 F5 AA 0D B9 9B 74 BB D3 FA 18 E5 29 214 FA 1B E1 F3 A1 32 DE F4 C4 F1 67 02 38 85 5C 11 216 77 C3 CB 18 F5 AA 0D B9 9B 74 BB D3 FA 18 E5 29
|
| /src/contrib/llvm-project/llvm/lib/MC/ ! |
| H A D | MCExpr.cpp | 615 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()
|
| /src/contrib/llvm-project/llvm/lib/Object/ ! |
| H A D | MachOUniversalWriter.cpp | 308 for (FatArchTy &FA : FatArchList) in writeUniversalArchsToStream() 309 MachO::swapStruct(FA); in writeUniversalArchsToStream() 314 for (FatArchTy &FA : FatArchList) in writeUniversalArchsToStream() 315 MachO::swapStruct(FA); in writeUniversalArchsToStream()
|
| /src/contrib/netbsd-tests/ipf/input/ ! |
| H A D | f11 | 9 in on e0 tcp 1.1.1.1,1 2.1.2.2,23 FA seq=2 ack=102
|
| /src/tools/tools/nanobsd/pcengines/Files/root/ ! |
| H A D | .cshrc | 10 alias lf ls -FA
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ ! |
| H A D | RDFLiveness.cpp | 196 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()
|
| /src/secure/caroot/trusted/ ! |
| H A D | DigiCert_Global_Root_G2.pem | 54 4E:22:54:20:18:95:E6:E3:6E:E6:0F:FA:FA:B9:12:ED:06:17:8F:39
|
| H A D | D-TRUST_Root_Class_3_CA_2_EV_2009.pem | 76 SHA1 Fingerprint=96:C9:1B:0B:95:B4:10:98:42:FA:D0:D8:22:79:FE:60:FA:B9:16:83
|
| H A D | Buypass_Class_3_Root_CA.pem | 102 SHA1 Fingerprint=DA:FA:F7:FA:66:84:EC:06:8F:14:50:BD:C7:C2:81:A5:BC:A9:64:57
|
| H A D | DigiCert_TLS_ECC_P384_Root_G5.pem | 40 C1:51:45:50:59:AB:3E:E7:2C:5A:FA:20:22:12:07:80:88:7C:11:6A
|
| /src/tools/tools/nanobsd/rescue/Files/root/ ! |
| H A D | .cshrc | 8 a lf ls -FA
|
| /src/share/skel/ ! |
| H A D | dot.cshrc | 11 alias lf ls -FA
|
| /src/bin/csh/ ! |
| H A D | dot.cshrc | 11 alias lf ls -FA
|
| /src/secure/caroot/untrusted/ ! |
| H A D | GeoTrust_Universal_CA_2.pem | 67 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
|
| H A D | SwissSign_Silver_CA_-_G2.pem | 70 17:A0:CD:C1:E4:41:B6:3A:5B:3B:CB:45:9D:BD:1C:C2:98:FA:86:58 72 17:A0:CD:C1:E4:41:B6:3A:5B:3B:CB:45:9D:BD:1C:C2:98:FA:86:58
|