Home
last modified time | relevance | path

Searched defs:Block (Results 1 – 25 of 251) sorted by relevance

1234567891011

/external/skia/src/sksl/ir/
DSkSLBlock.h19 struct Block : public Statement { struct
22 : INHERITED(offset, kBlock_Kind) in INHERITED() argument
40 return std::unique_ptr<Statement>(new Block(fOffset, std::move(cloned), fSymbols)); in clone() argument
43 String description() const override { in description()
55 const std::shared_ptr<SymbolTable> fSymbols;
56 std::vector<std::unique_ptr<Statement>> fStatements;
58 typedef Statement INHERITED;
/external/skqp/src/sksl/ir/
DSkSLBlock.h19 struct Block : public Statement { struct
22 : INHERITED(offset, kBlock_Kind) in INHERITED() argument
40 return std::unique_ptr<Statement>(new Block(fOffset, std::move(cloned), fSymbols)); in clone() argument
43 String description() const override { in description()
55 const std::shared_ptr<SymbolTable> fSymbols;
56 std::vector<std::unique_ptr<Statement>> fStatements;
58 typedef Statement INHERITED;
/external/perfetto/src/trace_processor/
Dstring_pool.h92 struct Block { struct
93 Block() : mem_(base::PagedMemory::Allocate(kBlockSize)) {} in Block() function
98 Block& operator=(Block&&) = default; argument
102 Block& operator=(const Block&) = delete; argument
111 PERFETTO_DCHECK(Get(0) < ptr && ptr < Get(kBlockSize - 1)); in OffsetOf() argument
118 static constexpr size_t kBlockSize = argument
123 base::PagedMemory mem_;
124 uint32_t pos_ = 0;
/external/tensorflow/tensorflow/core/platform/cloud/
Dram_file_block_cache.h168 struct Block { struct
187 /// The block map is an ordered map from Key to Block. argument
/external/skqp/src/core/
DSkDeque.cpp11 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()
DSkStream.cpp455 struct SkDynamicMemoryWStream::Block { struct in SkDynamicMemoryWStream
456 Block* fNext;
457 char* fCurr;
458 char* fStop;
460 const char* start() const { return (const char*)(this + 1); } in start()
461 char* start() { return (char*)(this + 1); } in start()
462 size_t avail() const { return fStop - fCurr; } in avail()
463 size_t written() const { return fCurr - this->start(); } in written()
465 void init(size_t size) { in init()
471 const void* append(const void* data, size_t size) { in append()
/external/skia/src/core/
DSkDeque.cpp11 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()
DSkStream.cpp455 struct SkDynamicMemoryWStream::Block { struct in SkDynamicMemoryWStream
456 Block* fNext;
457 char* fCurr;
458 char* fStop;
460 const char* start() const { return (const char*)(this + 1); } in start()
461 char* start() { return (char*)(this + 1); } in start()
462 size_t avail() const { return fStop - fCurr; } in avail()
463 size_t written() const { return fCurr - this->start(); } in written()
465 void init(size_t size) { in init()
471 const void* append(const void* data, size_t size) { in append()
/external/clang/docs/
DPCHInternals.rst199 .. _pchinternals-sourcemgr:
227 .. _pchinternals-preprocessor:
240 .. _pchinternals-types:
263 .. _pchinternals-decls:
394 .. _pchinternals-method-pool:
/external/deqp/framework/delibs/decpp/
DdeAppendList.hpp68 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() function
82 ~Block (void) in ~Block()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugLinesSubsection.h107 struct Block { struct
108 Block(uint32_t ChecksumBufferOffset) in Block() argument
124 void createBlock(StringRef FileName); argument
/external/tensorflow/tensorflow/core/profiler/internal/
Dtraceme_recorder.cc126 struct Block { struct in tensorflow::profiler::__anonecc5ecde0111::EventQueue
127 static constexpr size_t kLength =
131 const uint64 start; // The number of the first slot.
132 Block* next;
135 union MaybeEvent {
139 } events[kLength];
/external/clang/lib/Analysis/
DThreadSafetyTIL.cpp171 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
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DVPlan.cpp60 const VPBlockBase *Block = this; in getEntryBasicBlock() local
67 VPBlockBase *Block = this; in getEntryBasicBlock() local
75 const VPBlockBase *Block = this; in getExitBasicBlock() local
82 VPBlockBase *Block = this; in getExitBasicBlock() local
376 const Twine VPlanPrinter::getUID(const VPBlockBase *Block) { in getUID()
381 const Twine VPlanPrinter::getOrCreateName(const VPBlockBase *Block) { in getOrCreateName()
414 void VPlanPrinter::dumpBlock(const VPBlockBase *Block) { in dumpBlock()
440 void VPlanPrinter::dumpEdges(const VPBlockBase *Block) { in dumpEdges()
487 for (const VPBlockBase *Block : depth_first(Region->getEntry())) in dumpRegion() local
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIMachineScheduler.cpp1265 SIScheduleBlock *Block = CurrentBlocks[i]; in createBlocksForVariant() local
1300 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local
1311 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local
1324 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local
1345 SIScheduleBlock *Block = CurrentBlocks[i]; in scheduleInsideBlocks() local
1361 SIScheduleBlock *Block = CurrentBlocks[BlockIndice]; in scheduleInsideBlocks() local
1392 SIScheduleBlock *Block = CurrentBlocks[i]; in scheduleInsideBlocks() local
1422 SIScheduleBlock *Block = CurrentBlocks[BlockIndice]; in fillStats() local
1437 SIScheduleBlock *Block = CurrentBlocks[BlockIndice]; in fillStats() local
1470 SIScheduleBlock *Block = Blocks[i]; in SIScheduleBlockScheduler() local
[all …]
/external/llvm/lib/Target/AMDGPU/
DSIMachineScheduler.cpp1090 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/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DGCOV.cpp215 GCOVBlock &Block = *Blocks[BlockNo]; in readGCNO() local
323 GCOVBlock &Block = *Blocks[BlockNo]; in readGCDA() local
356 for (const auto &Block : Blocks) in print() local
375 for (const auto &Block : Blocks) in collectLineCounts() local
632 for (const GCOVBlock *Block : Blocks) { in print() local
689 for (const GCOVBlock *Block : Blocks) { in print() local
721 for (const GCOVBlock &Block : Func->blocks()) in printFunctionSummary() local
733 void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block, in printBlockInfo()
743 void FileInfo::printBranchInfo(raw_ostream &OS, const GCOVBlock &Block, in printBranchInfo()
/external/llvm/lib/IR/
DGCOV.cpp209 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
DBitstreamWriter.h48 struct Block { struct
52 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() argument
DBitstreamReader.h320 struct Block { struct
324 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} in Block() argument
/external/clang/include/clang/Analysis/Analyses/
DPostOrderCFGView.h50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { in insert()
66 bool alreadySet(const CFGBlock *Block) { in alreadySet()
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
DBitstreamWriter.h44 struct Block { struct
48 Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() argument
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h48 struct Block { struct
52 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() argument
/external/llvm/lib/Target/SystemZ/
DSystemZLongBranch.cpp180 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-7.0/llvm/lib/Target/SystemZ/
DSystemZLongBranch.cpp181 MBBInfo &Block) { in skipNonTerminators()
282 MBBInfo &Block = MBBs[I]; in initMBBInfo() local
344 for (auto &Block : MBBs) { in setWorstCaseAddresses() local
445 for (auto &Block : MBBs) { in relaxBranches() local

1234567891011