/freebsd/sys/dev/videomode/ |
H A D | videomode.c | 24 #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 D | ParseDecl.cpp | 58 DeclSpec DS(AttrFactory); in ParseTypeName() local 60 DS.addAttributes(*Attrs); in ParseTypeName() 61 ParseSpecifierQualifierList(DS, AS, DSC); in ParseTypeName() 63 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr; in ParseTypeName() 68 for (ParsedAttr &AL : DS.getAttributes()) { in ParseTypeName() 74 Attrs->takeOneFrom(DS.getAttributes(), AL); in ParseTypeName() 78 Declarator DeclaratorInfo(DS, ParsedAttributesView::none(), Context); in ParseTypeName() 1974 DeclSpec &DS, TagUseKind TUK) { in stripTypeAttributesOffDeclSpec() argument 1980 for (ParsedAttr &AL : DS.getAttributes()) { in stripTypeAttributesOffDeclSpec() 1988 DS.getAttributes().remove(AL); in stripTypeAttributesOffDeclSpec() [all …]
|
H A D | ParseExprCXX.cpp | 220 DeclSpec DS(AttrFactory); in ParseOptionalCXXScopeSpecifier() local 222 SourceLocation EndLoc = ParseDecltypeSpecifier(DS); in ParseOptionalCXXScopeSpecifier() 227 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto || in ParseOptionalCXXScopeSpecifier() 229 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc); in ParseOptionalCXXScopeSpecifier() 233 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc)) in ParseOptionalCXXScopeSpecifier() 243 DeclSpec DS(AttrFactory); in ParseOptionalCXXScopeSpecifier() local 245 SourceLocation EndLoc = ParsePackIndexingType(DS); in ParseOptionalCXXScopeSpecifier() 246 if (DS.getTypeSpecType() == DeclSpec::TST_error) in ParseOptionalCXXScopeSpecifier() 250 DS.getRepAsType().get(), DS.getPackIndexingExpr(), DS.getBeginLoc(), in ParseOptionalCXXScopeSpecifier() 251 DS.getEllipsisLoc()); in ParseOptionalCXXScopeSpecifier() [all …]
|
H A D | ParseDeclCXX.cpp | 361 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, DeclaratorContext Context) { in ParseLinkage() argument 370 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(), in ParseLinkage() 383 DS.SetRangeStart(SourceLocation()); in ParseLinkage() 384 DS.SetRangeEnd(SourceLocation()); in ParseLinkage() 386 DS.setExternInLinkageSpec(true); in ParseLinkage() 387 ParseExternalDeclaration(DeclAttrs, DeclSpecAttrs, &DS); in ParseLinkage() 393 DS.abort(); in ParseLinkage() 1120 SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) { in ParseDecltypeSpecifier() argument 1133 DS.setTypeArgumentRange(SourceRange(SourceLocation(), EndLoc)); in ParseDecltypeSpecifier() 1136 DS.SetTypeSpecError(); in ParseDecltypeSpecifier() [all …]
|
H A D | ParseObjc.cpp | 825 ParsingDeclSpec DS(*this); in ParseObjCInterfaceDeclList() local 826 ParseStructDeclaration(DS, ObjCPropertyCallback); in ParseObjCInterfaceDeclList() 854 ObjCDeclSpec &DS, in diagnoseRedundantPropertyNullability() argument 857 if (DS.getNullability() == nullability) { in diagnoseRedundantPropertyNullability() 860 << SourceRange(DS.getNullabilityLoc()); in diagnoseRedundantPropertyNullability() 866 << DiagNullabilityKind(DS.getNullability(), true) in diagnoseRedundantPropertyNullability() 867 << SourceRange(DS.getNullabilityLoc()); in diagnoseRedundantPropertyNullability() 896 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { in ParseObjCPropertyAttribute() argument 904 Actions.CodeCompletion().CodeCompleteObjCPropertyFlags(getCurScope(), DS); in ParseObjCPropertyAttribute() 918 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in ParseObjCPropertyAttribute() [all …]
|
H A D | Parser.cpp | 813 ParsingDeclSpec *DS) { in ParseExternalDeclaration() argument 1074 return ParseDeclarationOrFunctionDefinition(Attrs, DeclSpecAttrs, DS); in ParseExternalDeclaration() 1140 ParsingDeclSpec &DS, AccessSpecifier AS) { in ParseDeclOrFunctionDefInternal() argument 1144 assert(DS.getSourceRange().isInvalid() && in ParseDeclOrFunctionDefInternal() 1146 DS.SetRangeStart(DeclSpecAttrs.Range.getBegin()); in ParseDeclOrFunctionDefInternal() 1147 DS.SetRangeEnd(DeclSpecAttrs.Range.getEnd()); in ParseDeclOrFunctionDefInternal() 1148 DS.takeAttributesFrom(DeclSpecAttrs); in ParseDeclOrFunctionDefInternal() 1151 MaybeParseMicrosoftAttributes(DS.getAttributes()); in ParseDeclOrFunctionDefInternal() 1153 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, in ParseDeclOrFunctionDefInternal() 1158 if (DS.hasTagDefinition() && DiagnoseMissingSemiAfterTagDefinition( in ParseDeclOrFunctionDefInternal() [all …]
|
H A D | ParseTemplate.cpp | 230 ParsingDeclSpec DS(*this, &DiagsFromTParams); in ParseDeclarationAfterTemplate() local 231 DS.SetRangeStart(DeclSpecAttrs.Range.getBegin()); in ParseDeclarationAfterTemplate() 232 DS.SetRangeEnd(DeclSpecAttrs.Range.getEnd()); in ParseDeclarationAfterTemplate() 233 DS.takeAttributesFrom(DeclSpecAttrs); in ParseDeclarationAfterTemplate() 235 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, in ParseDeclarationAfterTemplate() 243 getCurScope(), AS, DS, ParsedAttributesView::none(), in ParseDeclarationAfterTemplate() 251 DS.complete(Decl); in ParseDeclarationAfterTemplate() 255 if (DS.hasTagDefinition()) in ParseDeclarationAfterTemplate() 256 Actions.ActOnDefinedDeclarationSpecifier(DS.getRepAsDecl()); in ParseDeclarationAfterTemplate() 262 return ParseDeclGroup(DS, Context, DeclAttrs, TemplateInfo, &DeclEnd); in ParseDeclarationAfterTemplate() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | ProfileSummaryBuilder.cpp | 81 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/lib/Sema/ |
H A D | SemaType.cpp | 801 static void diagnoseAndRemoveTypeQualifiers(Sema &S, const DeclSpec &DS, in diagnoseAndRemoveTypeQualifiers() argument 809 for (QualLoc Qual : {QualLoc(DeclSpec::TQ_const, DS.getConstSpecLoc()), in diagnoseAndRemoveTypeQualifiers() 810 QualLoc(DeclSpec::TQ_restrict, DS.getRestrictSpecLoc()), in diagnoseAndRemoveTypeQualifiers() 811 QualLoc(DeclSpec::TQ_volatile, DS.getVolatileSpecLoc()), in diagnoseAndRemoveTypeQualifiers() 812 QualLoc(DeclSpec::TQ_atomic, DS.getAtomicSpecLoc())}) { in diagnoseAndRemoveTypeQualifiers() 849 const DeclSpec &DS = declarator.getDeclSpec(); in checkOmittedBlockReturnType() local 850 unsigned TypeQuals = DS.getTypeQualifiers(); in checkOmittedBlockReturnType() 851 diagnoseAndRemoveTypeQualifiers(S, DS, TypeQuals, Result, (unsigned)-1, in checkOmittedBlockReturnType() 890 DeclSpec &DS = declarator.getMutableDeclSpec(); in ConvertDeclSpecToType() local 893 DeclLoc = DS.getBeginLoc(); in ConvertDeclSpecToType() [all …]
|
H A D | SemaCXXScopeSpec.cpp | 787 const DeclSpec &DS, in ActOnCXXNestedNameSpecifierDecltype() argument 789 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error) in ActOnCXXNestedNameSpecifierDecltype() 792 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype); in ActOnCXXNestedNameSpecifierDecltype() 794 QualType T = BuildDecltypeType(DS.getRepAsExpr()); in ActOnCXXNestedNameSpecifierDecltype() 799 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace) in ActOnCXXNestedNameSpecifierDecltype() 806 DecltypeTL.setDecltypeLoc(DS.getTypeSpecTypeLoc()); in ActOnCXXNestedNameSpecifierDecltype() 807 DecltypeTL.setRParenLoc(DS.getTypeofParensRange().getEnd()); in ActOnCXXNestedNameSpecifierDecltype() 814 const DeclSpec &DS, in ActOnCXXNestedNameSpecifierIndexedPack() argument 817 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error) in ActOnCXXNestedNameSpecifierIndexedPack() 820 assert(DS.getTypeSpecType() == DeclSpec::TST_typename_pack_indexing); in ActOnCXXNestedNameSpecifierIndexedPack() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | ConstructionContext.h | 90 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/sys/contrib/device-tree/Bindings/rtc/ |
H A D | maxim-ds1302.txt | 1 * 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 D | YAMLOutputStyle.cpp | 206 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 D | genLocInfo | 177 *,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/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | ProfileCommon.h | 74 getEntryForPercentile(const SummaryEntryVector &DS, uint64_t Percentile); 75 static uint64_t getHotCountThreshold(const SummaryEntryVector &DS); 76 static uint64_t getColdCountThreshold(const SummaryEntryVector &DS);
|
/freebsd/contrib/libpcap/msdos/ |
H A D | pkt_rx0.asm | 28 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 D | ConstructionContext.cpp | 110 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/sys/contrib/device-tree/Bindings/spi/ |
H A D | icpdas-lp8841-spi-rtc.txt | 3 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 D | RAIIObjectsForParser.h | 204 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 D | Parser.h | 965 bool TryAltiVecToken(DeclSpec &DS, SourceLocation Loc, in TryAltiVecToken() argument 977 return TryAltiVecTokenOutOfLine(DS, Loc, PrevSpec, DiagID, isInvalid); in TryAltiVecToken() 990 bool TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc, 1685 ParsingDeclSpec *DS = nullptr); 1690 ParsingDeclSpec *DS = nullptr, AccessSpecifier AS = AS_none); 1693 ParsingDeclSpec &DS, 1820 ParsedType ParseObjCTypeName(ObjCDeclSpec &DS, DeclaratorContext Ctx, 1828 void ParseObjCPropertyAttribute(ObjCDeclSpec &DS); 2068 ExprResult ParseCXXTypeConstructExpression(const DeclSpec &DS); 2073 void ParseCXXSimpleTypeSpecifier(DeclSpec &DS); [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaCodeCompletion.h | 98 void CodeCompleteDeclSpec(Scope *S, DeclSpec &DS, bool AllowNonIdentifiers, 112 void CodeCompleteTypeQualifiers(DeclSpec &DS); 113 void CodeCompleteFunctionQualifiers(DeclSpec &DS, Declarator &D, 177 void CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | VLASizeChecker.cpp | 61 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()
|
H A D | CheckerDocumentation.cpp | 78 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} in checkPreStmt() argument 88 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const; 339 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS, in checkPostStmt() argument
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | assembly.h | 236 .globl name[DS] SEPARATOR \ 239 .csect name[DS], CSECT_ALIGN SEPARATOR \ 262 .globl name[DS] SEPARATOR \ 265 .csect name[DS], CSECT_ALIGN SEPARATOR \
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | PtrTypesSemantics.cpp | 330 bool VisitDeclStmt(const DeclStmt *DS) { return VisitChildren(DS); } in VisitDeclStmt() argument 331 bool VisitDoStmt(const DoStmt *DS) { return VisitChildren(DS); } in VisitDoStmt() argument 346 bool VisitDefaultStmt(const DefaultStmt *DS) { return VisitChildren(DS); } in VisitDefaultStmt() argument
|