Home
last modified time | relevance | path

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

/external/python/asn1crypto/dev/
Dversion.py61 new_source = ''
65 new_source += '__version__ = %r\n' % new_version
68 new_source += '__version_info__ = %r\n' % (new_version_info,)
71 new_source += 'PACKAGE_VERSION = %r\n' % new_version
73 new_source += line
81 if new_source != orig_source:
84 f.write(new_source)
/external/tensorflow/tensorflow/compiler/xla/service/
Dindexed_array_analysis.cc490 Array* const new_source, in ReshapeToRemoveDegenerateDims()
517 new_source, new_indices, new_source_dim, in ReshapeToRemoveDegenerateDims()
592 Array* const new_source, in ReshapeToAddDegenerateDims()
595 new_source, operand->indices(), new_source_dim, in ReshapeToAddDegenerateDims()
939 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForElementwiseBinaryOp() local
941 new_source, scalar_indexed_const->indices(), in ComputeArrayForElementwiseBinaryOp()
963 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForElementwiseUnaryOp() local
965 new_source, scalar_indexed_const->indices(), in ComputeArrayForElementwiseUnaryOp()
1060 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForDotWithIndexedLhs() local
1062 new_source, lhs->indices(), new_source_dim, in ComputeArrayForDotWithIndexedLhs()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dmerge_return_pass.h267 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp255 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
257 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
260 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dmerge_return_pass.h267 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp255 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
257 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
260 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dmerge_return_pass.h267 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp255 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
257 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
260 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf_test.py449 new_source = parser.unparse(node, indentation=' ')
450 new_str = textwrap.dedent(new_source).strip()