Searched refs:from_id (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
D | structured_loop_to_selection_reduction_opportunity.cpp | 175 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()
|
D | structured_loop_to_selection_reduction_opportunity.h | 69 void AdaptPhiInstructionsForRemovedEdge(uint32_t from_id, 74 void AdaptPhiInstructionsForAddedEdge(uint32_t from_id, BasicBlock* to_block);
|
/external/deqp-deps/SPIRV-Tools/source/reduce/ |
D | structured_loop_to_selection_reduction_opportunity.cpp | 173 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()
|
D | structured_loop_to_selection_reduction_opportunity.h | 70 void AdaptPhiInstructionsForRemovedEdge(uint32_t from_id, 75 void AdaptPhiInstructionsForAddedEdge(uint32_t from_id, BasicBlock* to_block);
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | graph_execution_state.cc | 507 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/ |
D | nnapi_delegate.cc | 235 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/ |
D | nnapi_delegate.cc | 203 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/ |
D | cindex.py | 553 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/ |
D | hlo_graph_dumper.cc | 690 auto from_id = InstructionId(from); in DumpRootTag() local 710 edges_.push_back(StrFormat(R"(%s -> %s [tooltip=" "];)", from_id, to_id)); in DumpRootTag()
|