Home
last modified time | relevance | path

Searched refs:def_op (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dopcode.py27 def def_op(name, op): function
32 def_op(name, op)
36 def_op(name, op)
40 def_op(name, op)
46 def_op('STOP_CODE', 0)
47 def_op('POP_TOP', 1)
48 def_op('ROT_TWO', 2)
49 def_op('ROT_THREE', 3)
50 def_op('DUP_TOP', 4)
51 def_op('ROT_FOUR', 5)
[all …]
/external/python/cpython3/Lib/
Dopcode.py38 def def_op(name, op): function
43 def_op(name, op)
47 def_op(name, op)
51 def_op(name, op)
57 def_op('POP_TOP', 1)
58 def_op('ROT_TWO', 2)
59 def_op('ROT_THREE', 3)
60 def_op('DUP_TOP', 4)
61 def_op('DUP_TOP_TWO', 5)
62 def_op('ROT_FOUR', 6)
[all …]
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/IR/
Dhlo_ops.cc1373 Operation* def_op = op.operand().getDefiningOp(); in matchAndRewrite() local
1374 if (!def_op || !def_op->hasTrait<OpTrait::SameOperandsAndResultShape>()) { in matchAndRewrite()
1377 Operation* input_def_op = def_op->getOperand(0).getDefiningOp(); in matchAndRewrite()
1383 rewriter.replaceOp(op, {def_op->getResult(0)}); in matchAndRewrite()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_n_z.cc2958 Operation *def_op = value.getDefiningOp(); in isDefinedOutsideOfLoop() local
2959 return def_op && !getOperation()->isAncestor(def_op); in isDefinedOutsideOfLoop()
/external/mesa3d/src/amd/compiler/
Daco_lower_to_hw_instr.cpp1043 Operand def_op(dst.physReg(), v1); in copy_constant() local
1044 bld.vop2(aco_opcode::v_and_b32, dst, Operand(~(0xffffu << offset)), def_op); in copy_constant()
1045 bld.vop2(aco_opcode::v_or_b32, dst, Operand(op.constantValue() << offset), def_op); in copy_constant()