Searched refs:DS (Results 1 - 25 of 132) sorted by relevance

123456

/freebsd-11-stable/sys/dev/videomode/
H A Dvideomode.c27 #define DS VID_DBLSCAN macro
82 M("320x175x85",320,175,15750,336,368,416,191,192,222,HP|VN|DS),
83 M("320x200x85",320,200,15750,336,368,416,200,202,222,HN|VP|DS),
84 M("360x200x70",360,200,14160,369,423,450,206,207,224,HN|VP|DS),
85 M("360x200x85",360,200,17750,378,414,468,200,202,223,HN|VP|DS),
86 M("360x200x87",360,200,17750,369,423,450,210,211,224,HN|VN|DS),
87 M("320x240x60",320,240,12587,328,376,400,245,246,262,HN|VN|DS),
88 M("320x240x72",320,240,15750,332,352,416,244,246,260,HN|VN|DS),
89 M("320x240x75",320,240,15750,328,360,420,240,242,250,HN|VN|DS),
90 M("320x240x85",320,240,18000,348,376,416,240,242,254,HN|VN|DS),
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp52 DeclSpec DS(AttrFactory);
54 DS.addAttributes(*Attrs);
55 ParseSpecifierQualifierList(DS, AS, DSC);
57 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr;
60 Declarator DeclaratorInfo(DS, Context);
1706 // This function moves attributes that should apply to the type off DS to Attrs.
1708 DeclSpec &DS,
1715 for (ParsedAttr &AL : DS.getAttributes()) {
1723 DS
1707 stripTypeAttributesOffDeclSpec(ParsedAttributesWithRange &Attrs, DeclSpec &DS, Sema::TagUseKind TUK) argument
2003 ParseDeclGroup(ParsingDeclSpec &DS, DeclaratorContext Context, SourceLocation *DeclEnd, ForRangeInit *FRI) argument
2487 ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS, DeclSpecContext DSC) argument
2567 ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, DeclSpecContext DSC, ParsedAttributesWithRange &Attrs) argument
2890 DiagnoseMissingSemiAfterTagDefinition(DeclSpec &DS, AccessSpecifier AS, DeclSpecContext DSContext, LateParsedAttrList *LateAttrs) argument
3031 ParseDeclarationSpecifiers(DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, DeclSpecContext DSContext, LateParsedAttrList *LateAttrs) argument
3122 Actions.CodeCompleteDeclSpec(getCurScope(), DS, local
4131 ParseStructDeclaration( ParsingDeclSpec &DS, llvm::function_ref<void(ParsingFieldDeclarator &)> FieldsCallback) argument
4366 ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, DeclSpecContext DSC) argument
5401 ParseTypeQualifierListOpt( DeclSpec &DS, unsigned AttrReqs, bool AtomicAllowed, bool IdentifierRequired, Optional<llvm::function_ref<void()>> CodeCompletionHandler) argument
6333 InitCXXThisScopeForDeclaratorIfRelevant( const Declarator &D, const DeclSpec &DS, llvm::Optional<Sema::CXXThisScopeRAII> &ThisScope) argument
7099 ParseTypeofSpecifier(DeclSpec &DS) argument
7165 ParseAtomicSpecifier(DeclSpec &DS) argument
7230 TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, bool &isInvalid) argument
[all...]
H A DParseExprCXX.cpp213 DeclSpec DS(AttrFactory);
215 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
220 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto ||
222 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
226 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
1191 DeclSpec &DS) {
1198 DS.SetConstexprSpec(CSK_constexpr, ConstexprLoc, PrevSpec, DiagID);
1206 DeclSpec &DS) {
1211 DS.SetConstexprSpec(CSK_consteval, ConstevalLoc, PrevSpec, DiagID);
1233 DeclSpec DS(AttrFactor
[all...]
H A DParseDeclCXX.cpp333 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, DeclaratorContext Context) { argument
342 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(),
349 // Reset the source range in DS, as the leading "extern"
351 DS.SetRangeStart(SourceLocation());
352 DS.SetRangeEnd(SourceLocation());
354 DS.setExternInLinkageSpec(true);
355 ParseExternalDeclaration(attrs, &DS);
361 DS.abort();
933 SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) { argument
946 DS
1039 AnnotateExistingDecltypeSpecifier(const DeclSpec& DS, SourceLocation StartLoc, SourceLocation EndLoc) argument
1058 ParseUnderlyingTypeSpecifier(DeclSpec &DS) argument
1391 ParseClassSpecifier(tok::TokenKind TagTokKind, SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, bool EnteringContext, DeclSpecContext DSC, ParsedAttributesWithRange &Attributes) argument
[all...]
H A DParseObjc.cpp769 ParsingDeclSpec DS(*this);
770 ParseStructDeclaration(DS, ObjCPropertyCallback);
800 ObjCDeclSpec &DS,
803 if (DS.getNullability() == nullability) {
806 << SourceRange(DS.getNullabilityLoc());
812 << DiagNullabilityKind(DS.getNullability(), true)
813 << SourceRange(DS.getNullabilityLoc());
842 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { argument
849 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS); local
863 DS
799 diagnoseRedundantPropertyNullability(Parser &P, ObjCDeclSpec &DS, NullabilityKind nullability, SourceLocation nullabilityLoc) argument
1141 ParseObjCTypeQualifierList(ObjCDeclSpec &DS, DeclaratorContext Context) argument
1148 Actions.CodeCompleteObjCPassingType(getCurScope(), DS, local
1236 ParseObjCTypeName(ObjCDeclSpec &DS, DeclaratorContext context, ParsedAttributes *paramAttrs) argument
[all...]
H A DParser.cpp718 ParsingDeclSpec *DS) {
935 return ParseDeclarationOrFunctionDefinition(attrs, DS);
1001 ParsingDeclSpec &DS,
1003 MaybeParseMicrosoftAttributes(DS.getAttributes());
1005 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS,
1010 if (DS.hasTagDefinition() && DiagnoseMissingSemiAfterTagDefinition(
1011 DS, AS, DeclSpecContext::DSC_top_level))
1037 DeclSpec::isDeclRep(DS.getTypeSpecType())
1038 ? DS.getTypeSpecTypeLoc().getLocWithOffset(
1039 LengthOfTSTToken(DS
717 ParseExternalDeclaration(ParsedAttributesWithRange &attrs, ParsingDeclSpec *DS) argument
1000 ParseDeclOrFunctionDefInternal(ParsedAttributesWithRange &attrs, ParsingDeclSpec &DS, AccessSpecifier AS) argument
1103 ParseDeclarationOrFunctionDefinition(ParsedAttributesWithRange &attrs, ParsingDeclSpec *DS, AccessSpecifier AS) argument
[all...]
H A DParseTemplate.cpp214 ParsingDeclSpec DS(*this, &DiagsFromTParams);
216 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
224 getCurScope(), AS, DS,
231 DS.complete(Decl);
235 // Move the attributes from the prefix into the DS.
239 DS.takeAttributesFrom(prefixAttrs);
242 ParsingDeclarator DeclaratorInfo(*this, DS, (DeclaratorContext)Context);
281 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
285 Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef)
286 << FixItHint::CreateRemoval(DS
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Solaris/sys/
H A Dregset.h19 #undef DS macro
/freebsd-11-stable/sys/cddl/dev/dtrace/x86/
H A Dregset.h141 #define DS 3 macro
162 #define DS 2 macro
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DConstructionContext.h87 ConstructionContextItem(const DeclStmt *DS) argument
88 : Data(DS), Kind(VariableKind) {}
301 const DeclStmt *DS; member in class:clang::VariableConstructionContext
304 VariableConstructionContext(ConstructionContext::Kind K, const DeclStmt *DS) argument
305 : ConstructionContext(K), DS(DS) {
307 assert(DS);
311 const DeclStmt *getDeclStmt() const { return DS; }
326 explicit SimpleVariableConstructionContext(const DeclStmt *DS) argument
328 DS) {}
351 CXX17ElidedCopyVariableConstructionContext( const DeclStmt *DS, const CXXBindTemporaryExpr *BTE) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckerDocumentation.cpp72 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} argument
82 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
329 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS, argument
H A DVLASizeChecker.cpp41 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const;
82 void VLASizeChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const { argument
83 if (!DS->isSingleDecl())
86 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
H A DUndefinedAssignmentChecker.cpp87 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) {
88 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386v4-nat.c98 DS, ES, FS, GS,
/freebsd-11-stable/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= ;;
199 # echo "c: <$c>, C: <$C>, DB: <$DB>, DL: <$DL>, DS: <$DS>" >&2
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp776 static void diagnoseAndRemoveTypeQualifiers(Sema &S, const DeclSpec &DS, argument
784 for (QualLoc Qual : {QualLoc(DeclSpec::TQ_const, DS.getConstSpecLoc()),
785 QualLoc(DeclSpec::TQ_restrict, DS.getRestrictSpecLoc()),
786 QualLoc(DeclSpec::TQ_volatile, DS.getVolatileSpecLoc()),
787 QualLoc(DeclSpec::TQ_atomic, DS.getAtomicSpecLoc())}) {
824 const DeclSpec &DS = declarator.getDeclSpec(); local
825 unsigned TypeQuals = DS.getTypeQualifiers();
826 diagnoseAndRemoveTypeQualifiers(S, DS, TypeQuals, Result, (unsigned)-1,
1256 static QualType ConvertConstrainedAutoDeclSpecToType(Sema &S, DeclSpec &DS, argument
1258 assert(DS
1288 DeclSpec &DS = declarator.getMutableDeclSpec(); local
1800 BuildQualifiedType(QualType T, SourceLocation Loc, Qualifiers Qs, const DeclSpec *DS) argument
1847 BuildQualifiedType(QualType T, SourceLocation Loc, unsigned CVRAU, const DeclSpec *DS) argument
5570 const DeclSpec &DS; member in class:__anon698::__anon701::TypeSpecLocFiller
5573 TypeSpecLocFiller(Sema &S, ASTContext &Context, TypeProcessingState &State, const DeclSpec &DS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp206 auto &DS = DbiS.get();
208 Obj.DbiStream->Age = DS.getAge();
209 Obj.DbiStream->BuildNumber = DS.getBuildNumber();
210 Obj.DbiStream->Flags = DS.getFlags();
211 Obj.DbiStream->MachineType = DS.getMachineType();
212 Obj.DbiStream->PdbDllRbld = DS.getPdbDllRbld();
213 Obj.DbiStream->PdbDllVersion = DS.getPdbDllVersion();
214 Obj.DbiStream->VerHeader = DS.getDbiVersion();
216 const auto &Modules = DS.modules();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConstructionContext.cpp110 const auto *DS = cast<DeclStmt>(ParentItem.getStmt()); local
111 assert(!cast<VarDecl>(DS->getSingleDecl())->getType().getCanonicalType()
113 return create<CXX17ElidedCopyVariableConstructionContext>(C, DS, BTE);
173 const auto *DS = cast<DeclStmt>(TopItem.getStmt()); local
174 return create<SimpleVariableConstructionContext>(C, DS);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp107 StringRef DWARFUnitIndex::getColumnHeader(DWARFSectionKind DS) { argument
108 #define CASE(DS) \
109 case DW_SECT_##DS: \
110 return #DS;
111 switch (DS) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeStmtGen.h62 bool visitDeclStmt(const DeclStmt *DS);
H A DByteCodeEmitter.cpp69 for (auto &DS : Descriptors) {
70 Scopes.emplace_back(std::move(DS));
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.h102 void visitDfaState(const DfaState &DS);
/freebsd-11-stable/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
175 sub si, 6 ; DS:SI -> _pktRxBuf[n].destinAdr
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h204 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, DeclaratorContext C) argument
205 : Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
231 ParsingFieldDeclarator(Parser &P, const ParsingDeclSpec &DS) argument
232 : FieldDeclarator(DS), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp87 const DeclStmt *DS = cast<DeclStmt>(S); local
88 for (auto *I : DS->decls())

Completed in 317 milliseconds

123456