Searched refs:def_op (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | opcode.py | 27 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/ |
D | opcode.py | 38 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/ |
D | hlo_ops.cc | 1373 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/ |
D | tf_ops_n_z.cc | 2958 Operation *def_op = value.getDefiningOp(); in isDefinedOutsideOfLoop() local 2959 return def_op && !getOperation()->isAncestor(def_op); in isDefinedOutsideOfLoop()
|
/external/mesa3d/src/amd/compiler/ |
D | aco_lower_to_hw_instr.cpp | 1043 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()
|