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

1234567

/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrBicubicEffect.cpp12 #define DS(x) SkDoubleToScalar(x) macro
15 DS( 1.0 / 18.0), DS(-9.0 / 18.0), DS( 15.0 / 18.0), DS( -7.0 / 18.0),
16 DS(16.0 / 18.0), DS( 0.0 / 18.0), DS(-36.0 / 18.0), DS( 21.0 / 18.0),
17 DS( 1.
[all...]
/external/skia/src/gpu/effects/
H A DGrBicubicEffect.cpp3 #define DS(x) SkDoubleToScalar(x) macro
6 DS( 1.0 / 18.0), DS(-9.0 / 18.0), DS( 15.0 / 18.0), DS( -7.0 / 18.0),
7 DS(16.0 / 18.0), DS( 0.0 / 18.0), DS(-36.0 / 18.0), DS( 21.0 / 18.0),
8 DS( 1.
[all...]
/external/clang/lib/Parse/
H A DParseDecl.cpp51 DeclSpec DS(AttrFactory);
53 DS.addAttributes(Attrs->getList());
54 ParseSpecifierQualifierList(DS, AS, DSC);
56 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr;
59 Declarator DeclaratorInfo(DS, Context);
1357 ParsingDeclSpec DS(*this);
1360 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none, DSContext);
1364 if (DS.hasTagDefinition() &&
1365 DiagnoseMissingSemiAfterTagDefinition(DS, AS_non
1534 ParseDeclGroup(ParsingDeclSpec &DS, unsigned Context, bool AllowFunctionDefinitions, SourceLocation *DeclEnd, ForRangeInit *FRI) argument
1940 ParseSpecifierQualifierList(DeclSpec &DS, AccessSpecifier AS, DeclSpecContext DSC) argument
2021 ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, DeclSpecContext DSC, ParsedAttributesWithRange &Attrs) argument
2303 DiagnoseMissingSemiAfterTagDefinition(DeclSpec &DS, AccessSpecifier AS, DeclSpecContext DSContext, LateParsedAttrList *LateAttrs) argument
2431 ParseDeclarationSpecifiers(DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, DeclSpecContext DSContext, LateParsedAttrList *LateAttrs) argument
2500 Actions.CodeCompleteDeclSpec(getCurScope(), DS, local
3222 ParseStructDeclaration(ParsingDeclSpec &DS, FieldCallback &Fields) argument
3442 ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, DeclSpecContext DSC) argument
4370 ParseTypeQualifierListOpt(DeclSpec &DS, bool VendorAttributesAllowed, bool CXX11AttributesAllowed, bool AtomicAllowed, bool IdentifierRequired) argument
5682 ParseTypeofSpecifier(DeclSpec &DS) argument
5747 ParseAtomicSpecifier(DeclSpec &DS) argument
5812 TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, bool &isInvalid) argument
[all...]
H A DParseExprCXX.cpp236 DeclSpec DS(AttrFactory);
238 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
242 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
246 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
1005 DeclSpec DS(AttrFactory);
1006 Declarator D(DS, Declarator::LambdaExprContext);
1084 DS.getTypeQualifiers(),
1229 DeclSpec DS(AttrFactory);
1230 ParseSpecifierQualifierList(DS);
1233 Declarator DeclaratorInfo(DS, Declarato
1525 ParseCXXTypeConstructExpression(const DeclSpec &DS) argument
1718 ParseCXXSimpleTypeSpecifier(DeclSpec &DS) argument
1834 ParseCXXTypeSpecifierSeq(DeclSpec &DS) argument
[all...]
H A DRAIIObjectsForParser.h198 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext C) argument
199 : Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
225 ParsingFieldDeclarator(Parser &P, const ParsingDeclSpec &DS) argument
226 : FieldDeclarator(DS), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
H A DParseDeclCXX.cpp283 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) { argument
292 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(),
300 // Reset the source range in DS, as the leading "extern"
302 DS.SetRangeStart(SourceLocation());
303 DS.SetRangeEnd(SourceLocation());
305 DS.setExternInLinkageSpec(true);
306 ParseExternalDeclaration(attrs, &DS);
312 DS.abort();
736 SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) { argument
749 DS
838 AnnotateExistingDecltypeSpecifier(const DeclSpec& DS, SourceLocation StartLoc, SourceLocation EndLoc) argument
857 ParseUnderlyingTypeSpecifier(DeclSpec &DS) argument
1165 ParseClassSpecifier(tok::TokenKind TagTokKind, SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, bool EnteringContext, DeclSpecContext DSC, ParsedAttributesWithRange &Attributes) argument
2431 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); local
[all...]
H A DParser.cpp588 ParsingDeclSpec *DS) {
762 return ParseDeclarationOrFunctionDefinition(attrs, DS);
828 ParsingDeclSpec &DS,
831 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
835 if (DS.hasTagDefinition() &&
836 DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level))
844 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
845 DS.complete(TheDecl);
849 DS.takeAttributesFrom(attrs);
863 DS
587 ParseExternalDeclaration(ParsedAttributesWithRange &attrs, ParsingDeclSpec *DS) argument
827 ParseDeclOrFunctionDefInternal(ParsedAttributesWithRange &attrs, ParsingDeclSpec &DS, AccessSpecifier AS) argument
892 ParseDeclarationOrFunctionDefinition(ParsedAttributesWithRange &attrs, ParsingDeclSpec *DS, AccessSpecifier AS) argument
[all...]
H A DParseObjc.cpp518 ParsingDeclSpec DS(*this);
519 ParseStructDeclaration(DS, Callback);
567 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { argument
574 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS); local
588 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
590 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
592 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained);
594 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
596 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
598 DS
816 ParseObjCTypeQualifierList(ObjCDeclSpec &DS, Declarator::TheContext Context) argument
823 Actions.CodeCompleteObjCPassingType(getCurScope(), DS, local
895 ParseObjCTypeName(ObjCDeclSpec &DS, Declarator::TheContext context, ParsedAttributes *paramAttrs) argument
1231 ParseObjCProtocolQualifiers(DeclSpec &DS) argument
[all...]
H A DParseExpr.cpp784 DeclSpec DS(AttrFactory);
785 DS.SetRangeStart(ILoc);
786 DS.SetRangeEnd(ILoc);
789 DS.SetTypeSpecType(TST_typename, ILoc, PrevSpec, DiagID, Typ,
792 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
950 DeclSpec DS(AttrFactory);
951 DS.SetRangeStart(Tok.getLocation());
952 DS.SetRangeEnd(Tok.getLastLoc());
956 DS.SetTypeSpecType(TST_typename, Tok.getAnnotationEndLoc(),
960 Declarator DeclaratorInfo(DS, Declarato
[all...]
H A DParseTemplate.cpp185 ParsingDeclSpec DS(*this, &DiagsFromTParams);
187 ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
194 getCurScope(), AS, DS,
198 DS.complete(Decl);
202 // Move the attributes from the prefix into the DS.
206 DS.takeAttributesFrom(prefixAttrs);
209 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);
226 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
230 Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef)
231 << FixItHint::CreateRemoval(DS
[all...]
/external/iproute2/examples/
H A DSYN-DoS.rate.limit12 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
15 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
/external/skia/src/effects/
H A DSkBicubicImageFilter.cpp23 #define DS(x) SkDoubleToScalar(x) macro
26 DS( 1.0 / 18.0), DS(-9.0 / 18.0), DS( 15.0 / 18.0), DS( -7.0 / 18.0),
27 DS(16.0 / 18.0), DS( 0.0 / 18.0), DS(-36.0 / 18.0), DS( 21.0 / 18.0),
28 DS( 1.
[all...]
/external/llvm/include/llvm/Support/
H A DSolaris.h30 #undef DS macro
/external/llvm/lib/Support/
H A DHost.cpp497 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
498 if (!DS) {
506 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
507 delete DS;
586 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
587 if (!DS) {
595 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
596 delete DS;
651 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
652 if (!DS) {
694 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err); local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp78 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) {
79 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
H A DCheckerDocumentation.cpp71 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} argument
81 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
306 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS, argument
H A DVLASizeChecker.cpp40 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const;
79 void VLASizeChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const { argument
80 if (!DS->isSingleDecl())
83 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
/external/clang/lib/Sema/
H A DSemaType.cpp702 const DeclSpec &DS = declarator.getDeclSpec(); local
705 DeclLoc = DS.getLocStart();
710 switch (DS.getTypeSpecType()) {
715 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
717 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
720 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
726 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
728 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
729 S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
730 << DS
1187 BuildQualifiedType(QualType T, SourceLocation Loc, Qualifiers Qs, const DeclSpec *DS) argument
1225 BuildQualifiedType(QualType T, SourceLocation Loc, unsigned CVRA, const DeclSpec *DS) argument
3475 const DeclSpec &DS; member in class:__anon18110::TypeSpecLocFiller
3478 TypeSpecLocFiller(ASTContext &Context, const DeclSpec &DS) argument
[all...]
/external/iproute2/examples/diffserv/
H A DEdge111 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
14 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
H A DEdge212 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
15 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
H A DEdge31-cb-chains13 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
16 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dptrace-abi.h13 #define DS 7 macro
/external/clang/include/clang/Parse/
H A DParser.h602 bool TryAltiVecToken(DeclSpec &DS, SourceLocation Loc, argument
611 return TryAltiVecTokenOutOfLine(DS, Loc, PrevSpec, DiagID, isInvalid);
624 bool TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
1218 ParsingDeclSpec *DS = nullptr);
1223 ParsingDeclSpec *DS = nullptr,
1226 ParsingDeclSpec &DS,
1256 bool ParseObjCProtocolQualifiers(DeclSpec &DS);
1301 ParsedType ParseObjCTypeName(ObjCDeclSpec &DS, Declarator::TheContext Ctx,
1310 void ParseObjCPropertyAttribute(ObjCDeclSpec &DS);
1494 ExprResult ParseCXXTypeConstructExpression(const DeclSpec &DS);
[all...]
/external/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
/external/clang/lib/Analysis/
H A DPseudoConstantAnalysis.cpp172 const DeclStmt *DS = cast<DeclStmt>(Head); local
174 for (const auto *I : DS->decls()) {

Completed in 4167 milliseconds

1234567