Home
last modified time | relevance | path

Searched refs:DS (Results 1 – 25 of 240) sorted by relevance

12345678910

/freebsd/sys/dev/videomode/
H A Dvideomode.c24 #define DS VID_DBLSCAN macro
79 M("320x175x85",320,175,15750,336,368,416,191,192,222,HP|VN|DS),
80 M("320x200x85",320,200,15750,336,368,416,200,202,222,HN|VP|DS),
81 M("360x200x70",360,200,14160,369,423,450,206,207,224,HN|VP|DS),
82 M("360x200x85",360,200,17750,378,414,468,200,202,223,HN|VP|DS),
83 M("360x200x87",360,200,17750,369,423,450,210,211,224,HN|VN|DS),
84 M("320x240x60",320,240,12587,328,376,400,245,246,262,HN|VN|DS),
85 M("320x240x72",320,240,15750,332,352,416,244,246,260,HN|VN|DS),
86 M("320x240x75",320,240,15750,328,360,420,240,242,250,HN|VN|DS),
87 M("320x240x85",320,240,18000,348,376,416,240,242,254,HN|VN|DS),
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp54 DeclSpec DS(AttrFactory); in ParseTypeName() local
56 DS.addAttributes(*Attrs); in ParseTypeName()
59 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr; in ParseTypeName()
3017 DS.SetTypeSpecError(); in ParseImplicitInt()
3501 if (DS.hasTypeSpecifier() || DS.isTypeAltiVecVector()) in ParseDeclarationSpecifiers()
3662 if (DS.hasTypeSpecifier() && DS.hasTagDefinition()) in ParseDeclarationSpecifiers()
6296 SS, DS.getTypeQualifiers(), StarLoc, DS.getEndLoc()), in ParseDeclaratorInternal()
6310 DeclaratorChunk::getPipe(DS.getTypeQualifiers(), DS.getPipeLoc()), in ParseDeclaratorInternal()
6345 DS.getTypeQualifiers(), Loc, DS.getConstSpecLoc(), in ParseDeclaratorInternal()
6346 DS.getVolatileSpecLoc(), DS.getRestrictSpecLoc(), in ParseDeclaratorInternal()
[all …]
H A DParseExprCXX.cpp217 DeclSpec DS(AttrFactory); in ParseOptionalCXXScopeSpecifier() local
1280 DeclSpec DS(AttrFactory); in ParseLambdaExpressionAfterIntroducer() local
1585 DeclSpec DS(AttrFactory); in ParseCXXCasts() local
1800 DeclSpec DS(AttrFactory); in ParseCXXPseudoDestructor() local
2145 DeclSpec DS(AttrFactory); in ParseCXXCondition() local
2266 DS.SetTypeSpecError(); in ParseCXXSimpleTypeSpecifier()
2364 DS.SetRangeEnd(ParseDecltypeSpecifier(DS)); in ParseCXXSimpleTypeSpecifier()
2369 ParseTypeofSpecifier(DS); in ParseCXXSimpleTypeSpecifier()
2806 DeclSpec DS(AttrFactory); in ParseUnqualifiedIdOperator() local
3182 DeclSpec DS(AttrFactory); in ParseCXXNewExpression() local
[all …]
H A DParseObjc.cpp822 ParsingDeclSpec DS(*this); in ParseObjCInterfaceDeclList() local
1245 DS.setObjCDeclQualifier(Qual); in ParseObjCTypeQualifierList()
1317 declSpec.setObjCQualifiers(&DS); in ParseObjCTypeName()
1538 DeclSpec DS(AttrFactory); in ParseObjCMethodDecl() local
1539 ParseDeclarationSpecifiers(DS); in ParseObjCMethodDecl()
1741 DeclSpec DS(AttrFactory); in parseObjCTypeArgsOrProtocolQualifiers() local
2041 ParsingDeclSpec DS(*this); in ParseObjCClassInstanceVariables() local
2606 DeclSpec DS(AttrFactory); in ParseObjCTryStmt() local
2607 ParseDeclarationSpecifiers(DS); in ParseObjCTryStmt()
2993 DeclSpec DS(AttrFactory); in ParseObjCXXMessageReceiver() local
[all …]
H A DParseDeclCXX.cpp384 DS.abort(); in ParseLinkage()
1081 DS.SetTypeSpecError(); in ParseDecltypeSpecifier()
1093 DS.SetTypeSpecError(); in ParseDecltypeSpecifier()
1144 DS.SetTypeSpecError(); in ParseDecltypeSpecifier()
1168 DS.SetTypeSpecError(); in ParseDecltypeSpecifier()
1191 DS.getTypeSpecType() == TST_decltype ? DS.getRepAsExpr() in AnnotateExistingDecltypeSpecifier()
1376 DeclSpec DS(AttrFactory); in ParseBaseTypeSpecifier() local
1377 DS.SetRangeStart(IdLoc); in ParseBaseTypeSpecifier()
2179 DS.SetTypeSpecError(); in ParseClassSpecifier()
2834 DS.SetTypeSpecError(); in ParseCXXClassMemberDeclaration()
[all …]
H A DParser.cpp1144 DS.takeAttributesFrom(DeclSpecAttrs); in ParseDeclOrFunctionDefInternal()
1189 DS.complete(TheDecl); in ParseDeclOrFunctionDefInternal()
1198 if (DS.hasTagDefinition()) in ParseDeclOrFunctionDefInternal()
1214 DS.abort(); in ParseDeclOrFunctionDefInternal()
1215 DS.takeAttributesFrom(Attrs); in ParseDeclOrFunctionDefInternal()
1257 if (DS) { in ParseDeclarationOrFunctionDefinition()
1557 DeclSpec DS(AttrFactory); in ParseKNRParamDeclarations() local
1558 ParseDeclarationSpecifiers(DS); in ParseKNRParamDeclarations()
1574 Diag(DS.getStorageClassSpecLoc(), in ParseKNRParamDeclarations()
1576 DS.ClearStorageClassSpecs(); in ParseKNRParamDeclarations()
[all …]
H A DParseTemplate.cpp233 ParsingDeclSpec DS(*this, &DiagsFromTParams); in ParseSingleDeclarationAfterTemplate() local
234 DS.SetRangeStart(DeclSpecAttrs.Range.getBegin()); in ParseSingleDeclarationAfterTemplate()
235 DS.SetRangeEnd(DeclSpecAttrs.Range.getEnd()); in ParseSingleDeclarationAfterTemplate()
236 DS.takeAttributesFrom(DeclSpecAttrs); in ParseSingleDeclarationAfterTemplate()
238 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, in ParseSingleDeclarationAfterTemplate()
254 DS.complete(Decl); in ParseSingleDeclarationAfterTemplate()
258 if (DS.hasTagDefinition()) in ParseSingleDeclarationAfterTemplate()
329 DS.ClearStorageClassSpecs(); in ParseSingleDeclarationAfterTemplate()
682 DeclSpec DS(getAttrFactory()); in ParseTemplateParameter() local
683 DS.SetTypeSpecError(); in ParseTemplateParameter()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupport.cpp46 auto DS = GDBJITDebugInfoRegistrationPlugin::Create(ES, *ProcessSymsJD, TT); in enableDebuggerSupport() local
47 if (!DS) in enableDebuggerSupport()
48 return DS.takeError(); in enableDebuggerSupport()
49 ObjLinkingLayer->addPlugin(std::move(*DS)); in enableDebuggerSupport()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp81 ProfileSummaryBuilder::getEntryForPercentile(const SummaryEntryVector &DS, in getEntryForPercentile() argument
83 auto It = partition_point(DS, [=](const ProfileSummaryEntry &Entry) { in getEntryForPercentile()
88 if (It == DS.end()) in getEntryForPercentile()
166 ProfileSummaryBuilder::getHotCountThreshold(const SummaryEntryVector &DS) { in getHotCountThreshold() argument
168 ProfileSummaryBuilder::getEntryForPercentile(DS, ProfileSummaryCutoffHot); in getHotCountThreshold()
176 ProfileSummaryBuilder::getColdCountThreshold(const SummaryEntryVector &DS) { in getColdCountThreshold() argument
178 DS, ProfileSummaryCutoffCold); in getColdCountThreshold()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DConstructionContext.h90 ConstructionContextItem(const DeclStmt *DS) in ConstructionContextItem() argument
91 : Data(DS), Kind(VariableKind) {} in ConstructionContextItem()
317 const DeclStmt *DS; variable
320 VariableConstructionContext(ConstructionContext::Kind K, const DeclStmt *DS) in VariableConstructionContext() argument
321 : ConstructionContext(K), DS(DS) { in VariableConstructionContext()
323 assert(DS); in VariableConstructionContext()
327 const DeclStmt *getDeclStmt() const { return DS; } in getDeclStmt()
330 const auto *Var = cast<VarDecl>(DS->getSingleDecl()); in getArrayInitLoop()
348 explicit SimpleVariableConstructionContext(const DeclStmt *DS) in SimpleVariableConstructionContext() argument
350 DS) {} in SimpleVariableConstructionContext()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp1320 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType()
1327 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType()
1462 DS.getRepAsExpr(), DS.getBeginLoc()); in ConvertDeclSpecToType()
1487 if (DS.isTypeSpecSat()) in ConvertDeclSpecToType()
1510 if (DS.isTypeSpecSat()) in ConvertDeclSpecToType()
1796 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType()
1989 Diag(DS ? DS->getRestrictSpecLoc() : Loc, DiagID) << ProblemTy; in BuildQualifiedType()
2029 DS ? DS->getAtomicSpecLoc() : Loc); in BuildQualifiedType()
6226 const DeclSpec &DS; member in __anon813a705f1211::TypeSpecLocFiller
6231 : SemaRef(S), Context(Context), State(State), DS(DS) {} in TypeSpecLocFiller()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/rtc/
H A Dmaxim-ds1302.txt1 * Maxim/Dallas Semiconductor DS-1302 RTC
19 - spi-max-frequency : DS-1302 has 500 kHz if powered at 2.2V,
24 - spi-lsb-first : DS-1302 requires least significant bit first
27 - spi-cs-high: DS-1302 has active high chip select line. This is
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp206 auto &DS = DbiS.get(); in dumpDbiStream() local
208 Obj.DbiStream->Age = DS.getAge(); in dumpDbiStream()
209 Obj.DbiStream->BuildNumber = DS.getBuildNumber(); in dumpDbiStream()
210 Obj.DbiStream->Flags = DS.getFlags(); in dumpDbiStream()
211 Obj.DbiStream->MachineType = DS.getMachineType(); in dumpDbiStream()
212 Obj.DbiStream->PdbDllRbld = DS.getPdbDllRbld(); in dumpDbiStream()
213 Obj.DbiStream->PdbDllVersion = DS.getPdbDllVersion(); in dumpDbiStream()
214 Obj.DbiStream->VerHeader = DS.getDbiVersion(); in dumpDbiStream()
216 const auto &Modules = DS.modules(); in dumpDbiStream()
/freebsd/contrib/ntp/sntp/scripts/
H A DgenLocInfo177 *,bin,*) DB=bin ; DL= ; DS= ; NI= ;;
178 *,libexec,*) DB= ; DL=libexec ; DS= ; NI= ;;
179 *,noinst,*) DB= ; DL= ; DS= ; NI=noinst ;;
180 *,sbin,*) DB= ; DL= ; DS=sbin ; NI= ;;
/freebsd/contrib/libpcap/msdos/
H A Dpkt_rx0.asm28 ASSUME CS:_TEXT,DS:_TEXT
38 ASSUME CS:_TEXT,DS:_DATA
108 ;; to ES:DI (= DS:SI on 2nd call) by the packet driver
117 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
139 mov es, bx ; ES = DS = CS or seg _DATA
172 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DConstructionContext.cpp110 const auto *DS = cast<DeclStmt>(ParentItem.getStmt()); in createBoundTemporaryFromLayers() local
111 assert(!cast<VarDecl>(DS->getSingleDecl())->getType().getCanonicalType() in createBoundTemporaryFromLayers()
113 return create<CXX17ElidedCopyVariableConstructionContext>(C, DS, BTE); in createBoundTemporaryFromLayers()
179 const auto *DS = cast<DeclStmt>(TopItem.getStmt()); in createFromLayers() local
180 return create<SimpleVariableConstructionContext>(C, DS); in createFromLayers()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DProfileCommon.h74 getEntryForPercentile(const SummaryEntryVector &DS, uint64_t Percentile);
75 static uint64_t getHotCountThreshold(const SummaryEntryVector &DS);
76 static uint64_t getColdCountThreshold(const SummaryEntryVector &DS);
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dicpdas-lp8841-spi-rtc.txt3 ICP DAS LP-8841 contains a DS-1302 RTC. RTC is connected to an IO
31 - spi-cs-high: DS-1302 has active high chip select line. The master
34 - spi-lsb-first: DS-1302 requires least significant bit first
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h204 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, in ParsingDeclarator() argument
207 : Declarator(DS, DeclarationAttrs, C), in ParsingDeclarator()
208 ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {} in ParsingDeclarator()
233 ParsingFieldDeclarator(Parser &P, const ParsingDeclSpec &DS, in ParsingFieldDeclarator() argument
235 : FieldDeclarator(DS, DeclarationAttrs), in ParsingFieldDeclarator()
236 ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {} in ParsingFieldDeclarator()
H A DParser.h931 bool TryAltiVecToken(DeclSpec &DS, SourceLocation Loc, in TryAltiVecToken() argument
1777 void ParseObjCPropertyAttribute(ObjCDeclSpec &DS);
2017 void ParseCXXSimpleTypeSpecifier(DeclSpec &DS);
2447 DeclSpec &DS,
2465 DeclSpec &DS, AccessSpecifier AS = AS_none,
2475 void ParseObjCTypeQualifierList(ObjCDeclSpec &DS,
2486 ParsingDeclSpec &DS,
3057 void ParseTypeofSpecifier(DeclSpec &DS);
3058 SourceLocation ParseDecltypeSpecifier(DeclSpec &DS);
3062 void ParseAtomicSpecifier(DeclSpec &DS);
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckerDocumentation.cpp72 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} in checkPreStmt() argument
82 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
329 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS, in checkPostStmt() argument
H A DVLASizeChecker.cpp61 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const;
264 void VLASizeChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const { in checkPreStmt() argument
265 if (!DS->isSingleDecl()) in checkPreStmt()
273 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in checkPreStmt()
277 else if (const auto *TND = dyn_cast<TypedefNameDecl>(DS->getSingleDecl())) in checkPreStmt()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dmicrochip,pdmc.yaml51 Position of PDM microphones on the DS line and the sampling edge (rising
52 or falling) of the CLK line. A microphone is represented as a pair of DS
58 - description: value for DS line
/freebsd/contrib/llvm-project/libunwind/src/
H A Dassembly.h221 .globl name[DS] SEPARATOR \
224 .csect name[DS], CSECT_ALIGN SEPARATOR \
247 .globl name[DS] SEPARATOR \
250 .csect name[DS], CSECT_ALIGN SEPARATOR \
/freebsd/contrib/sendmail/cf/ostype/
H A Duxpds.m414 # Definitions for UXP/DS (Fujitsu/ICL DS/90 series)

12345678910