Home
last modified time | relevance | path

Searched refs:createBlock (Results 1 – 19 of 19) sorted by relevance

/external/clang/lib/Analysis/
DCFG.cpp572 void autoCreateBlock() { if (!Block) Block = createBlock(); } in autoCreateBlock()
573 CFGBlock *createBlock(bool add_successor = true);
1030 Succ = createBlock(); in buildCFG()
1091 cfg->setEntry(createBlock()); in buildCFG()
1098 CFGBlock *CFGBuilder::createBlock(bool add_successor) { in createBlock() function in __anone1957b8a0111::CFGBuilder
1099 CFGBlock *B = cfg->createBlock(); in createBlock()
1109 CFGBlock *B = createBlock(false); in createNoReturnBlock()
1655 CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); in VisitLogicalOperator()
1689 ExitBlock = RHSBlock = createBlock(false); in VisitLogicalOperator()
1730 CFGBlock *LHSBlock = createBlock(false); in VisitLogicalOperator()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dfunctional_control_flow_to_cfg.cc185 Block* then_block = builder.createBlock(merge_block); in LowerIfOp()
192 Block* else_block = builder.createBlock(merge_block); in LowerIfOp()
247 Block* cond_block = builder.createBlock(orig_block_tail); in LowerWhileOp()
248 Block* body_block = builder.createBlock(orig_block_tail); in LowerWhileOp()
/external/skia/tools/trace/
DChromeTracingTracer.cpp54 this->createBlock(); in ChromeTracingTracer()
59 void ChromeTracingTracer::createBlock() { in createBlock() function in ChromeTracingTracer
71 this->createBlock(); in appendEvent()
DChromeTracingTracer.h65 void createBlock();
/external/skqp/tools/trace/
DSkChromeTracingTracer.cpp58 this->createBlock(); in SkChromeTracingTracer()
65 void SkChromeTracingTracer::createBlock() { in createBlock() function in SkChromeTracingTracer
77 this->createBlock(); in appendEvent()
DSkChromeTracingTracer.h65 void createBlock();
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dxla_legalize_to_linalg.cc118 auto* block = rewriter.createBlock(region, region->end()); in matchAndRewrite()
211 auto* block = rewriter->createBlock(region, region->end()); in emitScalarBroadcast()
262 auto* block = rewriter->createBlock(region, region->end()); in emitNonScalarBroadcast()
304 auto* block = rewriter.createBlock(region, region->end()); in matchAndRewrite()
Dlegalize_tf_control_flow.cc86 auto entry_block = builder.createBlock(dest_region); in ImportXlaRegion()
Dlegalize_tf.cc236 Block *block = builder->createBlock(body); in BuildReduceBody()
336 Block *block = builder->createBlock(&condition); in CreateWhile32()
357 Block *block = builder->createBlock(&body); in CreateWhile32()
551 Block *block = builder->createBlock(body); in BuildArgMinMaxReductionBody()
655 Block *block = builder->createBlock(body); in BuildSortComparisonBody()
2296 Block *block = rewriter.createBlock(region); in matchAndRewrite()
2408 Block *block = rewriter.createBlock(&result.select()); in matchAndRewrite()
/external/skqp/src/gpu/
DGrBufferAllocPool.cpp167 if (!this->createBlock(size)) { in makeSpace()
231 if (!this->createBlock(fallbackSize)) { in makeSpaceAtLeast()
274 bool GrBufferAllocPool::createBlock(size_t requestSize) { in createBlock() function in GrBufferAllocPool
DGrBufferAllocPool.h127 bool createBlock(size_t requestSize);
/external/skia/src/gpu/
DGrBufferAllocPool.cpp227 if (!this->createBlock(size)) { in makeSpace()
291 if (!this->createBlock(fallbackSize)) { in makeSpaceAtLeast()
335 bool GrBufferAllocPool::createBlock(size_t requestSize) { in createBlock() function in GrBufferAllocPool
DGrBufferAllocPool.h150 bool createBlock(size_t requestSize);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugLinesSubsection.h124 void createBlock(StringRef FileName);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DDebugLinesSubsection.cpp76 void DebugLinesSubsection::createBlock(StringRef FileName) { in createBlock() function in DebugLinesSubsection
/external/dokka/core/src/main/kotlin/Java/
DJavadocParser.kt304 val childBlock = createBlock(node) in parseDocumentation()
316 private fun createBlock(element: Element): ContentBlock = when (element.tagName()) { in parseDocumentation() method in org.jetbrains.dokka.JavadocParser
/external/clang/include/clang/Analysis/
DCFG.h819 CFGBlock *createBlock();
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp423 Result->createBlock(LC.FileName); in toCodeViewSubsection()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dimport_model.cc1176 builder_.createBlock(&graph.body()); in Convert()