| /freebsd/contrib/llvm-project/clang/lib/Edit/ |
| H A D | EditedSource.cpp | 73 FileEditsTy::iterator FA = getActionForOffset(Offs); in canInsertInOffset() local 74 if (FA != FileEdits.end()) { in canInsertInOffset() 75 if (FA->first != Offs) in canInsertInOffset() 125 FileEdit &FA = FileEdits[Offs]; in commitInsert() local 126 if (FA.Text.empty()) { in commitInsert() 127 FA.Text = copyString(text); in commitInsert() 132 FA.Text = copyString(Twine(text) + FA.Text); in commitInsert() 134 FA.Text = copyString(Twine(FA.Text) + text); in commitInsert() 154 FileEdit &FA = I->second; in commitInsertFromRange() local 156 FileOffset E = B.getWithOffset(FA.RemoveLen); in commitInsertFromRange() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
| H A D | Visitor.cpp | 159 auto [ObjCIVR, FA] = in recordObjCInstanceVariables() 161 Ctx.Verifier->verify(ObjCIVR, FA, SuperClass); in recordObjCInstanceVariables() 183 auto [Class, FA] = in VisitObjCInterfaceDecl() 185 Ctx.Verifier->verify(Class, FA); in VisitObjCInterfaceDecl() 243 auto [GR, FA] = Ctx.Slice->addGlobal(getMangledName(D), Linkage, in VisitVarDecl() 246 Ctx.Verifier->verify(GR, FA); in VisitVarDecl() 296 auto [GR, FA] = in VisitFunctionDecl() 299 Ctx.Verifier->verify(GR, FA); in VisitFunctionDecl() 489 auto [GR, FA] = Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in emitVTableSymbols() 492 Ctx.Verifier->verify(GR, FA); in emitVTableSymbols() [all …]
|
| H A D | DylibVerifier.cpp | 50 const FrontendAttrs *FA = nullptr; member 198 if (!SymCtx.FA->Avail.isObsoleted()) in shouldIgnoreObsolete() 203 SymCtx.FA, &Ctx.Diag->getSourceManager(), Ctx.Target}); in shouldIgnoreObsolete() 238 if (!(Zippered && SymCtx.FA->Avail.isUnavailable())) in shouldIgnoreZipperedAvailability() 244 ZipperedDeclSource{SymCtx.FA, SourceManagers.back().get(), Ctx.Target}); in shouldIgnoreZipperedAvailability() 268 Ctx.Diag->Report(SymCtx.FA->Loc, PrintAsWarning in compareObjCInterfaceSymbols() 275 Ctx.Diag->Report(SymCtx.FA->Loc, PrintAsWarning in compareObjCInterfaceSymbols() 324 Ctx.Diag->Report(SymCtx.FA->Loc, diag::err_library_missing_symbol) in compareVisibility() 331 Ctx.Diag->Report(SymCtx.FA->Loc, diag::err_library_hidden_symbol) in compareVisibility() 345 if (shouldIgnorePrivateExternAttr(SymCtx.FA->D)) in compareVisibility() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | EPCGenericJITLinkMemoryManager.h | 74 static size_t size(const jitlink::JITLinkMemoryManager::FinalizedAlloc &FA) { in size() argument 75 return SPSArgList<SPSExecutorAddr>::size(ExecutorAddr(FA.getAddress())); in size() 80 const jitlink::JITLinkMemoryManager::FinalizedAlloc &FA) { in serialize() argument 82 OB, ExecutorAddr(FA.getAddress())); in serialize() 86 jitlink::JITLinkMemoryManager::FinalizedAlloc &FA) { in deserialize() argument 90 FA = jitlink::JITLinkMemoryManager::FinalizedAlloc(A); in deserialize()
|
| H A D | LinkGraphLinkingLayer.h | 162 FinalizedAlloc FA);
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MapperJITLinkMemoryManager.cpp | 150 for (auto &FA : Allocs) { in deallocate() local 151 ExecutorAddr Addr = FA.getAddress(); in deallocate() 163 for (auto &FA : Allocs) in deallocate() local 164 FA.release(); in deallocate() 172 for (auto &FA : Allocs) { in deallocate() local 173 ExecutorAddr Addr = FA.getAddress(); in deallocate() 179 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() 311 auto FA = Alloc->finalize(); in writeResolverBlock() local 312 if (!FA) in writeResolverBlock() 313 return FA.takeError(); in writeResolverBlock() 315 ResolverBlock = std::move(*FA); in writeResolverBlock() 381 auto FA = Alloc->finalize(); in getIndirectStubs() local 382 if (!FA) in getIndirectStubs() [all …]
|
| H A D | LinkGraphLinkingLayer.cpp | 246 Error notifyEmitted(jitlink::JITLinkMemoryManager::FinalizedAlloc FA) { in notifyEmitted() argument 252 if (FA) in notifyEmitted() 254 joinErrors(std::move(Err), Layer.MemMgr.deallocate(std::move(FA))); in notifyEmitted() 258 if (FA) in notifyEmitted() 259 return Layer.recordFinalizedAlloc(*MR, std::move(FA)); in notifyEmitted() 522 MaterializationResponsibility &MR, FinalizedAlloc FA) { in recordFinalizedAlloc() argument 524 [&](ResourceKey K) { Allocs[K].push_back(std::move(FA)); }); in recordFinalizedAlloc() 527 Err = joinErrors(std::move(Err), MemMgr.deallocate(std::move(FA))); in recordFinalizedAlloc()
|
| H A D | DebugObjectManagerPlugin.cpp | 170 OnFinalize = std::move(OnFinalize)](Expected<FinalizedAlloc> FA) { in finalizeAsync() argument 171 if (FA) { in finalizeAsync() 172 Alloc = std::move(*FA); in finalizeAsync() 175 OnFinalize(FA.takeError()); in finalizeAsync()
|
| /freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
| H A D | DylibVerifier.h | 57 const FrontendAttrs *FA; member 111 Result verify(GlobalRecord *R, const FrontendAttrs *FA); 112 Result verify(ObjCInterfaceRecord *R, const FrontendAttrs *FA); 113 Result verify(ObjCIVarRecord *R, const FrontendAttrs *FA,
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLinkMemoryManager.cpp | 463 auto *FA = Alloc.release().toPtr<FinalizedAllocInfo *>(); in deallocate() local 464 StandardSegmentsList.push_back(std::move(FA->StandardSegments)); in deallocate() 465 DeallocActionsList.push_back(std::move(FA->DeallocActions)); in deallocate() 466 FA->~FinalizedAllocInfo(); in deallocate() 467 FinalizedAllocInfos.Deallocate(FA); in deallocate() 500 auto *FA = FinalizedAllocInfos.Allocate<FinalizedAllocInfo>(); in createFinalizedAlloc() local 501 new (FA) FinalizedAllocInfo( in createFinalizedAlloc() 503 return FinalizedAlloc(orc::ExecutorAddr::fromPtr(FA)); in createFinalizedAlloc()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCExpr.cpp | 297 const MCFragment *FA = SA.getFragment(); in attemptToFoldSymbolOffsetDifference() local 299 const MCSection &SecA = *FA->getParent(); in attemptToFoldSymbolOffsetDifference() 314 if (FA == FB && !SA.isVariable() && !SB.isVariable()) { in attemptToFoldSymbolOffsetDifference() 336 if (FA == FB) in attemptToFoldSymbolOffsetDifference() 339 Reverse = FA->getLayoutOrder() < FB->getLayoutOrder(); in attemptToFoldSymbolOffsetDifference() 344 std::swap(FA, FB); in attemptToFoldSymbolOffsetDifference() 359 if (&*F != FA || SAOffset == DF->getContents().size()) in attemptToFoldSymbolOffsetDifference() 367 if (&*F == FA) { in attemptToFoldSymbolOffsetDifference()
|
| /freebsd/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
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOUniversalWriter.cpp | 308 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/secure/caroot/untrusted/ |
| H A D | OISTE_Client_Root_ECC_G1.pem | 39 99:57:3B:39:B1:2D:00:8C:21:66:8C:95:69:9C:6D:75:EC:8C:3F:FA 41 99:57:3B:39:B1:2D:00:8C:21:66:8C:95:69:9C:6D:75:EC:8C:3F:FA
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
| H A D | LoongArchAsmBackend.cpp | 510 auto FA = MCFixup::create(Fixup.getOffset(), nullptr, std::get<0>(FK)); in addReloc() local 512 Asm->getWriter().recordRelocation(F, FA, A, FixedValueA); in addReloc() 522 auto FA = MCFixup::create(Fixup.getOffset(), nullptr, ELF::R_LARCH_RELAX); in addReloc() local 523 Asm->getWriter().recordRelocation(F, FA, MCValue::get(nullptr), in addReloc()
|
| /freebsd/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
|
| /freebsd/tools/tools/nanobsd/pcengines/Files/root/ |
| H A D | .cshrc | 10 alias lf ls -FA
|
| /freebsd/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() 776 NodeAddr<FuncNode *> FA = DFG.getFunc(); in computeLiveIns() local 777 NodeList Blocks = FA.Addr->members(DFG); in computeLiveIns()
|
| /freebsd/secure/caroot/trusted/ |
| H A D | DigiCert_Global_Root_G2.pem | 51 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 | 75 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 | 99 SHA1 Fingerprint=DA:FA:F7:FA:66:84:EC:06:8F:14:50:BD:C7:C2:81:A5:BC:A9:64:57
|
| /freebsd/tools/tools/nanobsd/rescue/Files/root/ |
| H A D | .cshrc | 8 a lf ls -FA
|
| /freebsd/share/skel/ |
| H A D | dot.cshrc | 11 alias lf ls -FA
|
| /freebsd/bin/csh/ |
| H A D | dot.cshrc | 11 alias lf ls -FA
|