Home
last modified time | relevance | path

Searched refs:from_id (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp175 AdaptPhiInstructionsForRemovedEdge(uint32_t from_id, BasicBlock* to_block) { in AdaptPhiInstructionsForRemovedEdge() argument
176 to_block->ForEachPhiInst([&from_id](Instruction* phi_inst) { in AdaptPhiInstructionsForRemovedEdge()
182 if (phi_inst->GetInOperand(index + 1).words[0] != from_id) { in AdaptPhiInstructionsForRemovedEdge()
192 AdaptPhiInstructionsForAddedEdge(uint32_t from_id, BasicBlock* to_block) { in AdaptPhiInstructionsForAddedEdge() argument
193 to_block->ForEachPhiInst([this, &from_id](Instruction* phi_inst) { in AdaptPhiInstructionsForAddedEdge()
198 phi_inst->AddOperand(Operand(SPV_OPERAND_TYPE_ID, {from_id})); in AdaptPhiInstructionsForAddedEdge()
Dstructured_loop_to_selection_reduction_opportunity.h69 void AdaptPhiInstructionsForRemovedEdge(uint32_t from_id,
74 void AdaptPhiInstructionsForAddedEdge(uint32_t from_id, BasicBlock* to_block);
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp173 AdaptPhiInstructionsForRemovedEdge(uint32_t from_id, BasicBlock* to_block) { in AdaptPhiInstructionsForRemovedEdge() argument
174 to_block->ForEachPhiInst([&from_id](Instruction* phi_inst) { in AdaptPhiInstructionsForRemovedEdge()
180 if (phi_inst->GetInOperand(index + 1).words[0] != from_id) { in AdaptPhiInstructionsForRemovedEdge()
190 AdaptPhiInstructionsForAddedEdge(uint32_t from_id, BasicBlock* to_block) { in AdaptPhiInstructionsForAddedEdge() argument
191 to_block->ForEachPhiInst([this, &from_id](Instruction* phi_inst) { in AdaptPhiInstructionsForAddedEdge()
196 phi_inst->AddOperand(Operand(SPV_OPERAND_TYPE_ID, {from_id})); in AdaptPhiInstructionsForAddedEdge()
Dstructured_loop_to_selection_reduction_opportunity.h70 void AdaptPhiInstructionsForRemovedEdge(uint32_t from_id,
75 void AdaptPhiInstructionsForAddedEdge(uint32_t from_id, BasicBlock* to_block);
/external/tensorflow/tensorflow/core/common_runtime/
Dgraph_execution_state.cc507 TensorId from_id(ParseTensorName(tensor_connection.from_tensor())); in PruneGraph() local
510 if (n->name() == from_id.first) { in PruneGraph()
520 if (from_id.second >= from_node->num_outputs()) { in PruneGraph()
528 &tensor_connection.to_tensor(), {from_node, from_id.second})); in PruneGraph()
/external/tensorflow/tensorflow/contrib/lite/
Dnnapi_delegate.cc235 int from_id = from_ids_buf[i]; in MapAndAddTensorIds() local
236 if (from_id == kOptionalTensor) { in MapAndAddTensorIds()
237 into->push_back(from_id); in MapAndAddTensorIds()
239 into->push_back(map[from_id]); in MapAndAddTensorIds()
/external/tensorflow/tensorflow/lite/
Dnnapi_delegate.cc203 int from_id = from_ids_buf[i]; in MapAndAddTensorIds() local
204 if (from_id == kOptionalTensor) { in MapAndAddTensorIds()
205 into->push_back(from_id); in MapAndAddTensorIds()
207 into->push_back(map[from_id]); in MapAndAddTensorIds()
/external/clang/bindings/python/clang/
Dcindex.py553 def from_id(cls, id): member in BaseEnumeration
1271 return CursorKind.from_id(self._kind_id)
1334 return StorageClass.from_id(self._storage_class)
1345 return AccessSpecifier.from_id(self._access_specifier)
1644 def from_id(id): member in StorageClass
1782 return TypeKind.from_id(self._kind_id)
1981 return RefQualifierKind.from_id(
2208 return CursorKind.from_id(self.cursorKind)
3518 TemplateArgumentKind.from_id),
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_graph_dumper.cc690 auto from_id = InstructionId(from); in DumpRootTag() local
710 edges_.push_back(StrFormat(R"(%s -> %s [tooltip=" "];)", from_id, to_id)); in DumpRootTag()