Home
last modified time | relevance | path

Searched refs:SD (Results 1 – 25 of 246) sorted by relevance

12345678910

/freebsd-12-stable/sys/dev/mmc/
Dmmcbus_if.m27 # the SD Simplified Specification. The following disclaimer may apply:
30 # specification ("Simplified Specification") by the SD Card Association and
31 # the SD Group. The Simplified Specification is a subset of the complete SD
32 # Specification which is owned by the SD Card Association and the SD
35 # Simplified Specification may require a license from the SD Card
36 # Association, SD Group, SD-3C LLC or other third parties.
41 # as a standard specification for SD Cards and SD Host/Ancillary products and
43 # kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD
45 # right of the SD Group, SD-3C LLC, the SD Card Association or any third
48 # SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing
[all …]
Dmmcbr_if.m27 # the SD Simplified Specification. The following disclaimer may apply:
30 # specification ("Simplified Specification") by the SD Card Association and
31 # the SD Group. The Simplified Specification is a subset of the complete SD
32 # Specification which is owned by the SD Card Association and the SD
35 # Simplified Specification may require a license from the SD Card
36 # Association, SD Group, SD-3C LLC or other third parties.
41 # as a standard specification for SD Cards and SD Host/Ancillary products and
43 # kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD
45 # right of the SD Group, SD-3C LLC, the SD Card Association or any third
48 # SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing
[all …]
/freebsd-12-stable/sys/dev/sdhci/
Dsdhci_if.m27 # the SD Simplified Specification. The following disclaimer may apply:
30 # specification ("Simplified Specification") by the SD Card Association and
31 # the SD Group. The Simplified Specification is a subset of the complete SD
32 # Specification which is owned by the SD Card Association and the SD
35 # Simplified Specification may require a license from the SD Card
36 # Association, SD Group, SD-3C LLC or other third parties.
41 # as a standard specification for SD Cards and SD Host/Ancillary products and
43 # kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD
45 # right of the SD Group, SD-3C LLC, the SD Card Association or any third
48 # SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DSymbolManager.cpp161 SymExpr *SD = DataSet.FindNodeOrInsertPos(profile, InsertPos); in getRegionValueSymbol() local
162 if (!SD) { in getRegionValueSymbol()
163 SD = (SymExpr*) BPAlloc.Allocate<SymbolRegionValue>(); in getRegionValueSymbol()
164 new (SD) SymbolRegionValue(SymbolCounter, R); in getRegionValueSymbol()
165 DataSet.InsertNode(SD, InsertPos); in getRegionValueSymbol()
169 return cast<SymbolRegionValue>(SD); in getRegionValueSymbol()
180 SymExpr *SD = DataSet.FindNodeOrInsertPos(profile, InsertPos); in conjureSymbol() local
181 if (!SD) { in conjureSymbol()
182 SD = (SymExpr*) BPAlloc.Allocate<SymbolConjured>(); in conjureSymbol()
183 new (SD) SymbolConjured(SymbolCounter, E, LCtx, T, Count, SymbolTag); in conjureSymbol()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DInstrEmitter.cpp583 const ConstantSDNode *SD = cast<ConstantSDNode>(N0); in EmitSubregNode() local
584 MIB.addImm(SD->getZExtValue()); in EmitSubregNode()
676 InstrEmitter::EmitDbgValue(SDDbgValue *SD, in EmitDbgValue() argument
678 MDNode *Var = SD->getVariable(); in EmitDbgValue()
679 MDNode *Expr = SD->getExpression(); in EmitDbgValue()
680 DebugLoc DL = SD->getDebugLoc(); in EmitDbgValue()
684 SD->setIsEmitted(); in EmitDbgValue()
686 ArrayRef<SDDbgOperand> LocationOps = SD->getLocationOps(); in EmitDbgValue()
689 if (SD->isInvalidated()) in EmitDbgValue()
690 return EmitDbgNoLocation(SD); in EmitDbgValue()
[all …]
DInstrEmitter.h119 MachineInstr *EmitDbgValue(SDDbgValue *SD,
125 MachineInstr *EmitDbgInstrRef(SDDbgValue *SD,
129 MachineInstr *EmitDbgNoLocation(SDDbgValue *SD);
132 MachineInstr *EmitDbgValueFromSingleOp(SDDbgValue *SD,
136 MachineInstr *EmitDbgLabel(SDDbgLabel *SD);
DStatepointLowering.cpp586 auto canPassGCPtrOnVReg = [&](SDValue SD) { in lowerStatepointMetaArgs() argument
587 if (SD.getValueType().isVector()) in lowerStatepointMetaArgs()
589 if (LPadPointers.count(SD)) in lowerStatepointMetaArgs()
591 return !willLowerDirectly(SD); in lowerStatepointMetaArgs()
868 for (auto SD : LoweredGCArgs) { in LowerAsSTATEPOINT() local
869 if (!LowerAsVReg.count(SD)) in LowerAsSTATEPOINT()
871 NodeTys.push_back(SD.getValueType()); in LowerAsSTATEPOINT()
888 SDValue SD = getValue(Derived); in LowerAsSTATEPOINT() local
889 if (!LowerAsVReg.count(SD)) in LowerAsSTATEPOINT()
893 if (VirtRegs.count(SD)) in LowerAsSTATEPOINT()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaCXXScopeSpec.cpp328 bool Sema::isAcceptableNestedNameSpecifier(const NamedDecl *SD, in isAcceptableNestedNameSpecifier() argument
330 if (!SD) in isAcceptableNestedNameSpecifier()
333 SD = SD->getUnderlyingDecl(); in isAcceptableNestedNameSpecifier()
336 if (isa<NamespaceDecl>(SD)) in isAcceptableNestedNameSpecifier()
339 if (!isa<TypeDecl>(SD)) in isAcceptableNestedNameSpecifier()
344 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); in isAcceptableNestedNameSpecifier()
347 if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) { in isAcceptableNestedNameSpecifier()
356 } else if (isa<RecordDecl>(SD)) { in isAcceptableNestedNameSpecifier()
358 } else if (isa<EnumDecl>(SD)) { in isAcceptableNestedNameSpecifier()
665 NamedDecl *SD = in BuildCXXNestedNameSpecifier() local
[all …]
/freebsd-12-stable/sys/mips/conf/
Dstd.XLP116 # MMC/SD
118 device mmc # MMC/SD bus
119 device mmcsd # MMC/SD memory card
120 device sdhci # Generic PCI SD Host Controller
DBERI_SIM_SDROOT15 # This kernel expects to find its root filesystem on the SD Card.
DBERI_DE4_SDROOT14 # This kernel expects to find its root filesystem on the SD Card.
/freebsd-12-stable/sys/gnu/dts/arm/
Dkirkwood-openrd.dtsi79 * (serial@12100) and SD (mvsdio@90000).
82 * High: SD
88 output-high; /* Select SD by default */
Dbcm2837-rpi-3-b-plus.dts119 /* Used by SD Card */
157 /* SDHOST is used to drive the SD card */
Dbcm2837-rpi-3-b.dts112 /* Used by SD Card */
170 /* SDHOST is used to drive the SD card */
Dbcm2837-rpi-3-a-plus.dts112 /* Used by SD Card */
155 /* SDHOST is used to drive the SD card */
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
DReader.cpp137 const coff_aux_section_definition *SD = SymRef.getSectionDefinition(); in readSymbols() local
139 if (SD && SD->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE) { in readSymbols()
140 int32_t Index = SD->getNumber(IsBigObj); in readSymbols()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DTaint.cpp194 if (const auto *SD = dyn_cast<SymbolDerived>(*SI)) { in isTainted() local
196 if (isTainted(State, SD->getParentSymbol(), Kind)) in isTainted()
203 State->get<DerivedSymTaint>(SD->getParentSymbol())) { in isTainted()
204 const TypedValueRegion *R = SD->getRegion(); in isTainted()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/
DVVPNodes.def22 /// \p SDNAME is the generic SD opcode corresponding to \p VVPName.
29 /// \p SDNAME is the generic SD opcode corresponding to \p VVPName.
/freebsd-12-stable/contrib/llvm-project/clang/lib/Index/
DIndexingContext.cpp153 SD = dyn_cast<ClassTemplateSpecializationDecl>(D)) { in isTemplateImplicitInstantiation() local
154 TKind = SD->getSpecializationKind(); in isTemplateImplicitInstantiation()
212 SD = dyn_cast<ClassTemplateSpecializationDecl>(D)) { in adjustTemplateImplicitInstantiation() local
213 const auto *Template = SD->getTemplateInstantiationPattern(); in adjustTemplateImplicitInstantiation()
218 return SD->getSpecializedTemplate()->getTemplatedDecl(); in adjustTemplateImplicitInstantiation()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp2085 ScheduleData *SD = NextInBundle; in dump() local
2086 while (SD) { in dump()
2087 os << ';' << *SD->Inst; in dump()
2088 SD = SD->NextInBundle; in dump()
2153 const BoUpSLP::ScheduleData &SD) { in operator <<() argument
2154 SD.dump(os); in operator <<()
2187 ScheduleData *SD = ScheduleDataMap[V]; in getScheduleData() local
2188 if (SD && SD->SchedulingRegionID == SchedulingRegionID) in getScheduleData()
2189 return SD; in getScheduleData()
2198 ScheduleData *SD = I->second[Key]; in getScheduleData() local
[all …]
/freebsd-12-stable/sys/arm/conf/
DTEGRA12471 # MMC/SD/SDIO Card slot support
72 device sdhci # SD controller
73 device mmc # SD/MMC protocol
DRK318834 # Root mount from MMC/SD card
43 # MMC/SD/SDIO Card slot support
DAML872643 # MMC/SD/SDIO Card slot support
47 # Boot device is 2nd slice on MMC/SD card
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
DASTUnit.cpp1085 for (auto &SD : StoredDiagnostics) { in checkAndSanitizeDiags() local
1086 if (SD.getLocation().isValid()) { in checkAndSanitizeDiags()
1087 FullSourceLoc Loc(SD.getLocation(), SM); in checkAndSanitizeDiags()
1088 SD.setLocation(Loc); in checkAndSanitizeDiags()
2342 for (const auto &SD : Diags) { in TranslateStoredDiagnostics() local
2344 if (SD.Filename.empty()) in TranslateStoredDiagnostics()
2346 auto FE = FileMgr.getFile(SD.Filename); in TranslateStoredDiagnostics()
2350 auto ItFileID = PreambleSrcLocCache.find(SD.Filename); in TranslateStoredDiagnostics()
2354 PreambleSrcLocCache[SD.Filename] = FileLoc; in TranslateStoredDiagnostics()
2361 SourceLocation L = FileLoc.getLocWithOffset(SD.LocOffset); in TranslateStoredDiagnostics()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64SchedExynosM4.td632 def : InstRW<[M4WriteNSHF1], (instregex "^FABS[SD]r")>;
634 def : InstRW<[M4WriteFADD2], (instregex "^F(ADD|SUB)[SD]rr")>;
645 def : InstRW<[M4WriteFMAC3], (instregex "^FN?MUL[SD]rr")>;
651 M4ReadFMACM1], (instregex "^FN?M(ADD|SUB)[SD]rrr")>;
653 def : InstRW<[M4WriteNALU1], (instregex "^FNEG[SD]r")>;
661 def : InstRW<[M4WriteFCVT2H], (instregex "^FCVTH[SD]r")>;
662 def : InstRW<[M4WriteFCVT2H], (instregex "^FCVT[SD]Hr")>;
663 def : InstRW<[M4WriteFCVT2], (instregex "^FCVT[SD][SD]r")>;
690 M4WriteLH], (instregex "^LDN?P[SD]i")>;
695 WriteAdr], (instregex "^LDP[SD]post")>;
[all …]

12345678910