Home
last modified time | relevance | path

Searched refs:block_ (Results 1 – 25 of 33) sorted by relevance

12

/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dir_loader.cpp124 if (block_ != nullptr) { in AddInstruction()
136 if (block_ != nullptr) { in AddInstruction()
140 block_ = MakeUnique<BasicBlock>(std::move(spv_inst)); in AddInstruction()
146 if (block_ == nullptr) { in AddInstruction()
152 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
153 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
154 block_ = nullptr; in AddInstruction()
160 SPIRV_ASSERT(consumer_, block_ == nullptr); in AddInstruction()
220 if (block_ == nullptr) // Inside function but outside blocks in AddInstruction()
223 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
[all …]
Dir_loader.h82 std::unique_ptr<BasicBlock> block_; variable
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dir_loader.cpp124 if (block_ != nullptr) { in AddInstruction()
136 if (block_ != nullptr) { in AddInstruction()
140 block_ = MakeUnique<BasicBlock>(std::move(spv_inst)); in AddInstruction()
146 if (block_ == nullptr) { in AddInstruction()
152 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
153 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
154 block_ = nullptr; in AddInstruction()
160 SPIRV_ASSERT(consumer_, block_ == nullptr); in AddInstruction()
220 if (block_ == nullptr) // Inside function but outside blocks in AddInstruction()
223 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
[all …]
Dir_loader.h82 std::unique_ptr<BasicBlock> block_; variable
/external/deqp-deps/SPIRV-Tools/source/opt/
Dir_loader.cpp124 if (block_ != nullptr) { in AddInstruction()
136 if (block_ != nullptr) { in AddInstruction()
140 block_ = MakeUnique<BasicBlock>(std::move(spv_inst)); in AddInstruction()
146 if (block_ == nullptr) { in AddInstruction()
152 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
153 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
154 block_ = nullptr; in AddInstruction()
160 SPIRV_ASSERT(consumer_, block_ == nullptr); in AddInstruction()
220 if (block_ == nullptr) // Inside function but outside blocks in AddInstruction()
223 block_->AddInstruction(std::move(spv_inst)); in AddInstruction()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dremove_block_reduction_opportunity.cpp24 : function_(function), block_(block) { in RemoveBlockReductionOpportunity()
26 assert(block_->begin() != block_->end() && in RemoveBlockReductionOpportunity()
27 block_->begin()->context()->get_def_use_mgr()->NumUsers( in RemoveBlockReductionOpportunity()
28 block_->id()) == 0 && in RemoveBlockReductionOpportunity()
40 if (bi->id() == block_->id()) { in Apply()
Dremove_block_reduction_opportunity.h40 opt::BasicBlock* block_; variable
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dremove_block_reduction_opportunity.cpp24 : function_(function), block_(block) { in RemoveBlockReductionOpportunity()
26 assert(block_->begin() != block_->end() && in RemoveBlockReductionOpportunity()
27 block_->begin()->context()->get_def_use_mgr()->NumUsers( in RemoveBlockReductionOpportunity()
28 block_->id()) == 0 && in RemoveBlockReductionOpportunity()
40 if (bi->id() == block_->id()) { in Apply()
Dremove_block_reduction_opportunity.h40 opt::BasicBlock* block_; variable
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/reduce/
Dremove_block_reduction_opportunity.cpp24 : context_(context), function_(function), block_(block) { in RemoveBlockReductionOpportunity()
26 assert(block_->begin() != block_->end() && in RemoveBlockReductionOpportunity()
27 context_->get_def_use_mgr()->NumUsers(block_->id()) == 0 && in RemoveBlockReductionOpportunity()
39 if (bi->id() == block_->id()) { in Apply()
Dremove_block_reduction_opportunity.h42 opt::BasicBlock* block_; variable
/external/bcc/src/cc/frontends/b/
Dnode.h349 BlockStmtNode::Ptr block_; variable
351 : id_(move(id)), args_(move(args)), block_(make_unique<BlockStmtNode>()) { in MethodCallExprNode()
399 StmtNode::Ptr block_; variable
403 : cond_(move(cond)), block_(move(block)) {} in OnValidStmtNode()
406 : cond_(move(cond)), block_(move(block)), in OnValidStmtNode()
414 BlockStmtNode::Ptr block_; variable
416 : cond_(move(cond)), block_(move(block)) {} in SwitchStmtNode()
423 BlockStmtNode::Ptr block_; variable
425 : value_(move(value)), block_(move(block)) {} in CaseStmtNode()
426 explicit CaseStmtNode(BlockStmtNode::Ptr block) : block_(move(block)) {} in CaseStmtNode()
[all …]
Dprinter.cc60 TRY2(n->block_->accept(this)); in visit_onvalid_stmt_node()
72 TRY2(n->block_->accept(this)); in visit_switch_stmt_node()
83 TRY2(n->block_->accept(this)); in visit_case_stmt_node()
169 if (!n->block_->stmts_.empty()) { in visit_method_call_expr_node()
172 for (auto it = n->block_->stmts_.begin(); it != n->block_->stmts_.end(); ++it) { in visit_method_call_expr_node()
270 TRY2(n->block_->accept(this)); in visit_match_decl_stmt_node()
285 TRY2(n->block_->accept(this)); in visit_miss_decl_stmt_node()
300 TRY2(n->block_->accept(this)); in visit_failure_decl_stmt_node()
330 TRY2(n->block_->accept(this)); in visit_func_decl_stmt_node()
Dtype_check.cc59 TRY2(n->block_->accept(this)); in visit_onvalid_stmt_node()
70 TRY2(n->block_->accept(this)); in visit_switch_stmt_node()
71 for (auto it = n->block_->stmts_.begin(); it != n->block_->stmts_.end(); ++it) { in visit_switch_stmt_node()
83 TRY2(n->block_->accept(this)); in visit_case_stmt_node()
261 if (n->block_->scope_) { in check_lookup_method()
264 n->block_->scope_->add("_result", result.get()); in check_lookup_method()
265 n->block_->stmts_.insert(n->block_->stmts_.begin(), move(result)); in check_lookup_method()
337 if (!n->block_->stmts_.empty()) { in visit_method_call_expr_node()
340 TRY2(n->block_->accept(this)); in visit_method_call_expr_node()
435 s1->subs_[0].block_->scope_->add("$" + name, offset_var.get()); in visit_state_decl_stmt_node()
[all …]
/external/perfetto/src/trace_processor/containers/
Dbit_vector_iterators.h42 block_.Set(block_offset()); in Set()
52 block_.Clear(block_offset()); in Clear()
60 bool IsSet() { return block_.IsSet(block_offset()); } in IsSet()
124 BitVector::Block block_{};
Dbit_vector_iterators.cc27 block_ = bv_->blocks_[0]; in BaseIterator()
46 bv_->blocks_[old_block] = block_; in OnBlockChange()
66 block_ = bv_->blocks_[new_block]; in OnBlockChange()
/external/llvm-project/compiler-rt/lib/hwasan/
Dhwasan_allocator.h73 HwasanChunkView() : block_(0), metadata_(nullptr) {} in HwasanChunkView()
75 : block_(block), metadata_(metadata) {} in HwasanChunkView()
84 uptr block_;
Dhwasan_allocator.cpp58 return AlignRight(block_, metadata_->get_requested_size()); in Beg()
59 return block_; in Beg()
72 return allocator.GetActuallyAllocatedSize(reinterpret_cast<void *>(block_)); in ActualSize()
76 return allocator.FromPrimary(reinterpret_cast<void *>(block_)); in FromSmallHeap()
/external/deqp-deps/SPIRV-Tools/source/val/
Dinstruction.h54 const BasicBlock* block() const { return block_; } in block()
55 void set_block(BasicBlock* b) { block_ = b; } in set_block()
122 BasicBlock* block_ = nullptr; variable
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/
Dinstruction.h54 const BasicBlock* block() const { return block_; } in block()
55 void set_block(BasicBlock* b) { block_ = b; } in set_block()
122 BasicBlock* block_ = nullptr; variable
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dinstruction.h54 const BasicBlock* block() const { return block_; } in block()
55 void set_block(BasicBlock* b) { block_ = b; } in set_block()
122 BasicBlock* block_ = nullptr; variable
/external/stressapptest/src/
Derror_diag.h113 int block_; // error block. variable
124 int block_; // error block. variable
/external/tensorflow/tensorflow/core/lib/io/
Dtable_test.cc192 BlockConstructor() : block_(nullptr) {} in BlockConstructor()
193 ~BlockConstructor() override { delete block_; } in ~BlockConstructor()
195 delete block_; in FinishImpl()
196 block_ = nullptr; in FinishImpl()
208 block_ = new Block(contents); in FinishImpl()
211 Iterator* NewIterator() const override { return block_->NewIterator(); } in NewIterator()
215 Block* block_; member in tensorflow::table::BlockConstructor
/external/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_clock.cpp635 block_++; in Next()
636 if (block_ < parent_->blocks_) { in Next()
638 u32 idx = parent_->get_block(block_); in Next()
641 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next()
645 if (block_ == parent_->blocks_ && in Next()
649 end_ = pos_ + min(parent_->size_ - block_ * ClockBlock::kClockCount, in Next()
Dtsan_clock.h54 int block_; // Current number of second level block. variable
262 , block_(-1) { in Iter()

12