/external/skia/src/sksl/ir/ |
D | SkSLBlock.h | 19 struct Block : public Statement { struct 20 Block(Position position, std::vector<std::unique_ptr<Statement>> statements, in Block() function 26 SkString description() const override { in description() 38 const std::shared_ptr<SymbolTable> fSymbols; 39 const std::vector<std::unique_ptr<Statement>> fStatements; 41 typedef Statement INHERITED;
|
/external/skia/src/core/ |
D | SkDeque.cpp | 11 struct SkDeque::Block { struct in SkDeque 12 Block* fNext; 13 Block* fPrev; 14 char* fBegin; // start of used section in this chunk 15 char* fEnd; // end of used section in this chunk 16 char* fStop; // end of the allocated chunk 18 char* start() { return (char*)(this + 1); } in start() 19 const char* start() const { return (const char*)(this + 1); } in start() 21 void init(size_t size) { in init()
|
D | SkVarAlloc.cpp | 12 struct SkVarAlloc::Block { struct in SkVarAlloc 13 Block* prev; 14 char* data() { return (char*)(this + 1); } in data() 16 static Block* Alloc(Block* prev, size_t size) { in Alloc()
|
D | SkStream.cpp | 434 struct SkDynamicMemoryWStream::Block { struct in SkDynamicMemoryWStream 435 Block* fNext; 436 char* fCurr; 437 char* fStop; 439 const char* start() const { return (const char*)(this + 1); } in start() 440 char* start() { return (char*)(this + 1); } in start() 441 size_t avail() const { return fStop - fCurr; } in avail() 442 size_t written() const { return fCurr - this->start(); } in written() 444 void init(size_t size) { in init() 450 const void* append(const void* data, size_t size) { in append()
|
D | SkTLList.h | 220 struct Block { struct 227 fFirstBlock.fNodesInUse = 0; in delayedInit() argument
|
/external/clang/docs/ |
D | PCHInternals.rst | 199 .. _pchinternals-sourcemgr: 227 .. _pchinternals-preprocessor: 240 .. _pchinternals-types: 263 .. _pchinternals-decls: 394 .. _pchinternals-method-pool:
|
/external/deqp/framework/delibs/decpp/ |
D | deAppendList.hpp | 68 struct Block struct in de::AppendList 70 const size_t blockNdx; 71 ElementType* elements; 72 Block* volatile next; 74 Block (size_t blockNdx_, size_t size) in Block() argument 82 ~Block (void) in ~Block()
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyTIL.cpp | 171 for (auto *Block : successors()) in topologicalSort() local 264 for (auto *Block : Blocks) in renumberInstrs() local 309 for (auto *Block : Blocks) in computeNormalForm() local 322 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local 328 for (auto *Block : Blocks) { in computeNormalForm() local 333 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local
|
D | ReachableCode.cpp | 383 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) { in isDeadCodeRoot() 414 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { in findDeadCode() 449 const CFGBlock *Block = WorkList.pop_back_val(); in scanBackwards() local 493 const CFGBlock *Block = I->first; in scanBackwards() local
|
D | Consumed.cpp | 57 static SourceLocation getFirstStmtLoc(const CFGBlock *Block) { in getFirstStmtLoc() 72 static SourceLocation getLastStmtLoc(const CFGBlock *Block) { in getLastStmtLoc() 1048 const CFGBlock *Block, ConsumedStateMap *StateMap, in addInfo() 1063 void ConsumedBlockInfo::addInfo(const CFGBlock *Block, in addInfo() 1077 ConsumedStateMap* ConsumedBlockInfo::borrowInfo(const CFGBlock *Block) { in borrowInfo() 1084 void ConsumedBlockInfo::discardInfo(const CFGBlock *Block) { in discardInfo() 1089 ConsumedBlockInfo::getInfo(const CFGBlock *Block) { in getInfo() 1104 bool ConsumedBlockInfo::isBackEdgeTarget(const CFGBlock *Block) { in isBackEdgeTarget()
|
/external/llvm/lib/Target/AMDGPU/ |
D | SIMachineScheduler.cpp | 1090 SIScheduleBlock *Block = CurrentBlocks[i]; in createBlocksForVariant() local 1140 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local 1151 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local 1164 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local 1185 SIScheduleBlock *Block = CurrentBlocks[i]; in scheduleInsideBlocks() local 1201 SIScheduleBlock *Block = CurrentBlocks[BlockIndice]; in scheduleInsideBlocks() local 1232 SIScheduleBlock *Block = CurrentBlocks[i]; in scheduleInsideBlocks() local 1264 SIScheduleBlock *Block = CurrentBlocks[BlockIndice]; in fillStats() local 1279 SIScheduleBlock *Block = CurrentBlocks[BlockIndice]; in fillStats() local 1314 SIScheduleBlock *Block = Blocks[i]; in SIScheduleBlockScheduler() local [all …]
|
/external/llvm/lib/IR/ |
D | GCOV.cpp | 209 GCOVBlock &Block = *Blocks[BlockNo]; in readGCNO() local 317 GCOVBlock &Block = *Blocks[BlockNo]; in readGCDA() local 351 for (const auto &Block : Blocks) in dump() local 363 for (const auto &Block : Blocks) in collectLineCounts() local 610 for (const GCOVBlock *Block : Blocks) { in print() local 667 for (const GCOVBlock *Block : Blocks) { in print() local 699 for (const GCOVBlock &Block : Func->blocks()) in printFunctionSummary() local 711 void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block, in printBlockInfo() 721 void FileInfo::printBranchInfo(raw_ostream &OS, const GCOVBlock &Block, in printBranchInfo()
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 48 struct Block { struct 52 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() argument
|
D | BitstreamReader.h | 421 struct Block { struct 424 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} in Block() argument
|
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 44 struct Block { struct 48 Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() argument
|
D | BitstreamReader.h | 142 struct Block { struct 145 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} in Block() argument
|
/external/skia/src/gpu/vk/ |
D | GrVkMemory.h | 80 struct Block { struct 84 typedef SkTLList<Block, 16> FreeList; argument
|
/external/clang/include/clang/Analysis/Analyses/ |
D | PostOrderCFGView.h | 50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { in insert() 66 bool alreadySet(const CFGBlock *Block) { in alreadySet()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZLongBranch.cpp | 180 MBBInfo &Block) { in skipNonTerminators() 277 MBBInfo &Block = MBBs[I]; in initMBBInfo() local 339 for (auto &Block : MBBs) { in setWorstCaseAddresses() local 440 for (auto &Block : MBBs) { in relaxBranches() local
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 105 DIEBlock *Block) { in addBlock() 244 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addAddress() local 263 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addComplexAddress() local 396 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addBlockByrefAddress() local 462 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addConstantValue() local 483 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addConstantFPValue() local 526 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addConstantValue() local 969 DIEBlock *Block = getDIEBlock(); in getOrCreateSubprogramDIE() local 1080 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in createGlobalVariableDIE() local 1104 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in createGlobalVariableDIE() local
|
/external/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 151 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateRegularScope() local 179 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateInlinedScope() local 203 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateAbstractScope() local
|
/external/clang/lib/CodeGen/ |
D | CGCleanup.h | 161 llvm::BasicBlock *Block; member 193 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { in setCatchAllHandler() 197 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) { in setHandler() 203 void setHandler(unsigned I, CatchTypeInfo Type, llvm::BasicBlock *Block) { in setHandler() 374 llvm::BasicBlock *Block) { in addBranchAfter() 410 bool addBranchThrough(llvm::BasicBlock *Block) { in addBranchThrough()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopVersioningLICM.cpp | 381 for (auto *Block : CurLoop->getBlocks()) in legalLoopInstructions() local 486 for (auto *Block : CurLoop->getBlocks()) { in setNoAliasToLoop() local 527 for (auto *Block : L->getBlocks()) { in runOnLoop() local
|
/external/clang/test/SemaObjC/ |
D | arc-type-conversion.m | 64 typedef void (^Block)(); typedef
|
/external/clang/test/SemaObjCXX/ |
D | arc-type-conversion.mm | 195 typedef void (^Block)(); typedef
|