/external/llvm/unittests/Support/ |
H A D | StreamingMemoryObjectTest.cpp | 43 auto DS = make_unique<NullDataStreamer>(); local 44 StreamingMemoryObject O(std::move(DS)); 49 auto DS = make_unique<NullDataStreamer>(); local 50 StreamingMemoryObject O(std::move(DS));
|
/external/llvm/tools/llvm-pdbdump/fuzzer/ |
H A D | llvm-pdbdump-fuzzer.cpp | 83 pdb::DbiStream &DS = DbiS.get(); local 85 for (auto &Modi : DS.modules()) {
|
/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnitIndex.cpp | 104 StringRef DWARFUnitIndex::getColumnHeader(DWARFSectionKind DS) { argument 105 #define CASE(DS) \ 106 case DW_SECT_##DS: \ 107 return #DS; 108 switch (DS) {
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
H A D | Solaris.h | 21 #undef DS macro
|
/external/clang/lib/Analysis/ |
H A D | PseudoConstantAnalysis.cpp | 170 const DeclStmt *DS = cast<DeclStmt>(Head); local 172 for (const auto *I : DS->decls()) {
|
H A D | LiveVariables.cpp | 209 void VisitDeclStmt(DeclStmt *DS); 290 const DeclStmt *DS = cast<DeclStmt>(S); local 291 if (const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) { 372 void TransferFunctions::VisitDeclStmt(DeclStmt *DS) { argument 373 for (const auto *DI : DS->decls()) 386 if (DeclStmt *DS = dyn_cast<DeclStmt>(element)) { 387 VD = cast<VarDecl>(DS->getSingleDecl());
|
/external/llvm/include/llvm/Support/ |
H A D | Solaris.h | 30 #undef DS macro
|
/external/llvm/lib/Analysis/ |
H A D | ProfileSummaryInfo.cpp | 40 static uint64_t getMinCountForPercentile(SummaryEntryVector &DS, argument 45 auto It = std::lower_bound(DS.begin(), DS.end(), Percentile, Compare); 48 if (It == DS.end())
|
/external/spirv-llvm/tools/llvm-spirv/ |
H A D | llvm-spirv.cpp | 122 auto DS = getDataFileStreamer(InputFile, &Err); local 123 if (!DS) { 129 getStreamedBitcodeModule(InputFile, std::move(DS), Context); 242 auto DS = getDataFileStreamer(InputFile, &Err); local 243 if (!DS) { 249 getStreamedBitcodeModule(InputFile, std::move(DS), Context);
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
H A D | PrintModulePass.cpp | 33 PrintModulePass(const std::string &B, raw_ostream *o, bool DS) argument 34 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {} 58 PrintFunctionPass(const std::string &B, raw_ostream *o, bool DS) argument 59 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CheckerDocumentation.cpp | 71 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} argument 81 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const; 320 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS, argument
|
H A D | VLASizeChecker.cpp | 40 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const; 81 void VLASizeChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const { argument 82 if (!DS->isSingleDecl()) 85 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
H A D | ptrace-abi.h | 13 #define DS 7 macro
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
H A D | PDBFile.cpp | 133 auto DS = MappedBlockStream::createDirectoryStream(*this); local 134 if (!DS) 135 return DS.takeError(); 136 StreamReader Reader(**DS); 168 DirectoryStream = std::move(*DS); 353 auto DS = MappedBlockStream::createDirectoryStream(*this); 354 if (!DS) 355 return DS.takeError(); 356 auto DirStream = std::move(*DS);
|
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
H A D | fd4_program.c | 150 DS = 3, enumerator in enum:__anon14922 163 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ 210 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; 211 s[HS].constoff = s[DS].constoff = s[GS].constoff = s[FS].constoff; 308 OUT_RING(ring, A4XX_HLSQ_DS_CONTROL_REG_CONSTLENGTH(s[DS].constlen) | 309 A4XX_HLSQ_DS_CONTROL_REG_CONSTOBJECTOFFSET(s[DS].constoff) | 310 A4XX_HLSQ_DS_CONTROL_REG_INSTRLENGTH(s[DS].instrlen) | 311 A4XX_HLSQ_DS_CONTROL_REG_SHADEROBJOFFSET(s[DS].instroff)); 431 OUT_RING(ring, A4XX_SP_DS_OBJ_OFFSET_REG_CONSTOBJECTOFFSET(s[DS].constoff) | 432 A4XX_SP_DS_OBJ_OFFSET_REG_SHADEROBJOFFSET(s[DS] [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | CoreEngine.cpp | 499 void CoreEngine::HandleStaticInit(const DeclStmt *DS, const CFGBlock *B, argument 504 SubEng.processStaticInitializer(DS, Ctx, Pred, Dst,
|
H A D | ExprEngineC.cpp | 476 void ExprEngine::VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, argument 479 const VarDecl *VD = dyn_cast_or_null<VarDecl>(*DS->decl_begin()); 489 getCheckerManager().runCheckersForPreStmt(dstPreVisit, Pred, DS, *this); 506 assert(DS->isSingleDecl()); 512 B.generateNode(DS, UpdatedN, state); 540 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true); 545 B.generateNode(DS, N, state); 549 getCheckerManager().runCheckersForPostStmt(Dst, B.getResults(), DS, *this);
|
H A D | ExprEngineCXX.cpp | 117 auto *DS = cast<DeclStmt>(StmtElem->getStmt()); local 118 if (const auto *Var = dyn_cast<VarDecl>(DS->getSingleDecl())) {
|
/external/llvm/tools/llvm-pdbdump/ |
H A D | LLVMOutputStyle.cpp | 434 auto DS = File.getPDBDbiStream(); 435 if (!DS) 436 return DS.takeError(); 439 P.printNumber("Dbi Version", DS->getDbiVersion()); 440 P.printNumber("Age", DS->getAge()); 441 P.printBoolean("Incremental Linking", DS->isIncrementallyLinked()); 442 P.printBoolean("Has CTypes", DS->hasCTypes()); 443 P.printBoolean("Is Stripped", DS->isStripped()); 444 P.printObject("Machine Type", DS->getMachineType()); 445 P.printNumber("Symbol Record Stream Index", DS 590 auto DS = F.getPDBDbiStream(); local 622 Visitor(ScopedPrinter &P, DbiStream &DS) argument 651 DbiStream &DS; member in class:Visitor [all...] |
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
H A D | fd5_program.c | 266 DS = 3, enumerator in enum:__anon14924 279 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ 329 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; 387 OUT_RING(ring, A5XX_HLSQ_DS_CONTROL_REG_CONSTOBJECTOFFSET(s[DS].constoff) | 388 A5XX_HLSQ_DS_CONTROL_REG_SHADEROBJOFFSET(s[DS].instroff) | 389 COND(s[DS].v, A5XX_HLSQ_DS_CONTROL_REG_ENABLED)); 401 OUT_RING(ring, A5XX_HLSQ_DS_CNTL_INSTRLEN(s[DS].instrlen)); 414 OUT_RING(ring, A5XX_SP_DS_CONTROL_REG_CONSTOBJECTOFFSET(s[DS].constoff) | 415 A5XX_SP_DS_CONTROL_REG_SHADEROBJOFFSET(s[DS].instroff) | 416 COND(s[DS] [all...] |
/external/clang/lib/Driver/ |
H A D | ToolChain.cpp | 145 const DriverSuffix *DS = FindDriverSuffix(ProgName); local 147 if (!DS) { 151 DS = FindDriverSuffix(ProgName); 154 if (!DS) { 158 DS = FindDriverSuffix(ProgName); 160 return DS; 167 const DriverSuffix *DS = parseDriverSuffix(ProgName); local 168 if (!DS) 170 std::string ModeFlag = DS->ModeFlag == nullptr ? "" : DS [all...] |
/external/clang/lib/Parse/ |
H A D | RAIIObjectsForParser.h | 204 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext 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()) {
|
/external/clang/lib/Sema/ |
H A D | JumpDiagnostics.cpp | 417 DeclStmt *DS = cast<DeclStmt>(S); local 420 for (auto *I : DS->decls()) 558 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SubStmt)) 559 Next = DS->getSubStmt(); 611 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) 612 Loc = DS->getLocStart();
|
H A D | SemaCXXScopeSpec.cpp | 845 const DeclSpec &DS, 847 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error) 850 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype); 852 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); 854 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace) 861 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc()); 844 ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS, const DeclSpec &DS, SourceLocation ColonColonLoc) argument
|
H A D | SemaTemplateVariadic.cpp | 700 const DeclSpec &DS = D.getDeclSpec(); local 701 switch (DS.getTypeSpecType()) { 706 QualType T = DS.getRepAsType().get(); 714 if (DS.getRepAsExpr() && 715 DS.getRepAsExpr()->containsUnexpandedParameterPack())
|