Home
last modified time | relevance | path

Searched refs:SID (Results 1 – 25 of 29) sorted by relevance

12

/src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
41 SID EHFrameSID;
42 SID TextSID;
43 SID ExceptTabSID;
H A DRuntimeDyldELF.h30 uint64_t SymOffset = 0, SID SectionID = 0);
143 DenseMap<SID, SID> SectionToGOTMap;
156 SmallVector<SID, 2> UnregisteredEHFrameSections;
H A DRuntimeDyldImpl.h256 typedef unsigned SID; // Type for SectionIDs typedef
257 #define RTDYLD_INVALID_SECTION_ID ((RuntimeDyldImpl::SID)(-1))
H A DRuntimeDyldELF.cpp223 for (SID EHFrameSID : UnregisteredEHFrameSections) { in registerEHFrames()
1044 uint64_t SymOffset, SID SectionID) { in resolveRelocation()
/src/contrib/llvm-project/clang/lib/Analysis/
H A DIntervalPartition.cpp54 if (auto SID = getID(*S); !Partitioned.test(SID)) { in buildInterval() local
58 Workset.set(SID); in buildInterval()
86 if (auto SID = getID(*S); in buildInterval() local
87 !Partitioned.test(SID) && !Workset.test(SID)) { in buildInterval()
89 Workset.set(SID); in buildInterval()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.h34 uint64_t SymOffset, SID SectionID);
37 uint64_t SymOffset, SID SectionID);
56 uint64_t SymOffset, SID SectionID);
H A DRuntimeDyldELFMips.cpp110 int64_t Addend, uint64_t SymOffset, SID SectionID) { in evaluateMIPS64Relocation()
267 int64_t Addend, uint64_t SymOffset, SID SectionID) { in resolveMIPSN32Relocation()
276 int64_t Addend, uint64_t SymOffset, SID SectionID) { in resolveMIPSN64Relocation()
H A DRuntimeDyldCOFFX86_64.h30 SmallVector<SID, 2> UnregisteredEHFrameSections;
31 SmallVector<SID, 2> RegisteredEHFrameSections;
H A DRuntimeDyldCOFFAArch64.h70 SmallVector<SID, 2> UnregisteredEHFrameSections;
71 SmallVector<SID, 2> RegisteredEHFrameSections;
/src/sys/netinet6/
H A Dscope6.c76 #define SID(ifp) (&(ifp)->if_inet6->scope6_id) macro
144 sid = SID(ifp); in scope6_set()
213 sid = SID(ifp); in scope6_get()
433 sid = SID(ifp); in in6_setscope()
535 return (SID(ifp)->s6id_list[scope]); in in6_getscopezone()
/src/crypto/krb5/src/lib/krb5/os/
H A Dt_trace.ref37 int, krb5_principal type: Windows 2000 UPN and SID
39 int, krb5_principal type: NT 4 style name and SID
/src/sys/contrib/device-tree/Bindings/mfd/
H A Dqcom,spmi-pmic.txt67 SID = 0. The regulator device node represents a peripheral of pm8941 SID = 1.
/src/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1429 ObjCInterfaceDecl *SID = OID->getSuperClass(); in VisitObjCImplementationDecl() local
1432 if (SID) in VisitObjCImplementationDecl()
1433 Out << "@implementation " << I << " : " << *SID; in VisitObjCImplementationDecl()
1448 else if (SID || (OID->decls_begin() != OID->decls_end())) { in VisitObjCImplementationDecl()
1460 ObjCInterfaceDecl *SID = OID->getSuperClass(); in VisitObjCInterfaceDecl() local
1484 if (SID) in VisitObjCInterfaceDecl()
1508 else if (SID || (OID->decls_begin() != OID->decls_end())) { in VisitObjCInterfaceDecl()
/src/contrib/netbsd-tests/bin/ps/
H A Dkeywords92 sid SID
/src/crypto/heimdal/lib/asn1/
H A Dkrb5.asn189 KRB5_NT_ENT_PRINCIPAL_AND_ID(-130), -- Windows 2000 UPN and SID
91 KRB5_NT_MS_PRINCIPAL_AND_ID(-129), -- NT style name and SID
/src/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp503 bool parseSectionID(std::optional<MBBSectionID> &SID);
648 bool MIParser::parseSectionID(std::optional<MBBSectionID> &SID) { in parseSectionID() argument
655 SID = MBBSectionID{Value}; in parseSectionID()
659 SID = MBBSectionID::ExceptionSectionID; in parseSectionID()
661 SID = MBBSectionID::ColdSectionID; in parseSectionID()
/src/sys/contrib/device-tree/src/arm64/qcom/
H A Dsm8550-sony-xperia-yodo-pdx234.dts21 /* TODO: Only one SID of PMR735D seems accessible? */
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h490 void DiagnoseDuplicateIvars(ObjCInterfaceDecl *ID, ObjCInterfaceDecl *SID);
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6084 SelectorID SID = SelectorIDs[Sel]; in getSelectorRef() local
6085 if (SID == 0 && Chain) { in getSelectorRef()
6089 SID = SelectorIDs[Sel]; in getSelectorRef()
6091 if (SID == 0) { in getSelectorRef()
6092 SID = NextSelectorID++; in getSelectorRef()
6093 SelectorIDs[Sel] = SID; in getSelectorRef()
6095 return SID; in getSelectorRef()
/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp362 StringIdRecord SID(TypeIndex(), ScopeName); in getScopeIndex() local
363 auto TI = TypeTable.writeLeafType(SID); in getScopeIndex()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3771 ObjCInterfaceDecl *SID) { in DiagnoseDuplicateIvars() argument
3776 ObjCIvarDecl* prevIvar = SID->lookupInstanceVariable(II); in DiagnoseDuplicateIvars()
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600Instructions.td926 "RID:$RESOURCE_ID SID:$SAMPLER_ID "
/src/sys/contrib/device-tree/src/arm64/nvidia/
H A Dtegra186.dtsi557 reg = <0x0 0x02c00000 0x0 0x10000>, /* MC-SID */
H A Dtegra194.dtsi665 reg = <0x0 0x02c00000 0x0 0x10000>, /* MC-SID */
/src/crypto/krb5/src/include/krb5/
H A Dkrb5.hin249 #define KRB5_NT_MS_PRINCIPAL -128 /**< Windows 2000 UPN and SID */
251 #define KRB5_NT_ENT_PRINCIPAL_AND_ID -130 /**< NT 4 style name and SID */
8171 #define KRB5_PAC_REQUESTOR 18 /**< PAC requestor SID */

12