Home
last modified time | relevance | path

Searched refs:operand1 (Results 1 – 18 of 18) sorted by relevance

/external/libunwind/src/dwarf/
DGexpr.c193 unw_word_t operand1 = 0, operand2 = 0, tmp1, tmp2, tmp3, end_addr; in dwarf_eval_expr() local
255 &operand1, arg)) < 0) in dwarf_eval_expr()
293 (int) opcode - DW_OP_breg0, (unsigned long) operand1); in dwarf_eval_expr()
298 push (tmp1 + operand1); in dwarf_eval_expr()
303 (int) operand1, (unsigned long) operand2); in dwarf_eval_expr()
305 dwarf_to_unw_regnum (operand1), &tmp1)) < 0) in dwarf_eval_expr()
327 Debug (15, "OP_regx(r%d)\n", (int) operand1); in dwarf_eval_expr()
328 *valp = dwarf_to_unw_regnum (operand1); in dwarf_eval_expr()
340 Debug (15, "OP_const(0x%lx)\n", (unsigned long) operand1); in dwarf_eval_expr()
341 push (operand1); in dwarf_eval_expr()
[all …]
/external/chromium_org/third_party/skia/src/animator/
DSkScript.cpp1263 SkOperand operand1 = operand2; // !!! not really needed, suppresses warning in processOp() local
1266 fOperandStack.pop(&operand1); in processOp()
1269 SkTSwap(operand1, operand2); in processOp()
1277 val.fOperand = operand1; in processOp()
1282 operand1 = val.fOperand; in processOp()
1299 convertToString(operand1, type1 == kInt ? SkType_Int : SkType_Float); in processOp()
1308 operand1.fScalar = IntToScalar(operand1.fS32); in processOp()
1319 … const char* result = SkParse::FindScalar(operand1.fString->c_str(), &operand1.fScalar); in processOp()
1327 operand1.fS32 = SkScalarFloorToInt(operand1.fScalar); in processOp()
1352 operand2.fS32 += operand1.fS32; in processOp()
[all …]
/external/skia/src/animator/
DSkScript.cpp1263 SkOperand operand1 = operand2; // !!! not really needed, suppresses warning in processOp() local
1266 fOperandStack.pop(&operand1); in processOp()
1269 SkTSwap(operand1, operand2); in processOp()
1277 val.fOperand = operand1; in processOp()
1282 operand1 = val.fOperand; in processOp()
1299 convertToString(operand1, type1 == kInt ? SkType_Int : SkType_Float); in processOp()
1308 operand1.fScalar = IntToScalar(operand1.fS32); in processOp()
1319 … const char* result = SkParse::FindScalar(operand1.fString->c_str(), &operand1.fScalar); in processOp()
1327 operand1.fS32 = SkScalarFloorToInt(operand1.fScalar); in processOp()
1352 operand2.fS32 += operand1.fS32; in processOp()
[all …]
/external/ltrace/sysdeps/linux-gnu/arm/
Dtrace.c173 uint32_t operand1, operand2, result = 0; in arm_get_next_pcs() local
204 (proc, BITS(this_instr, 16, 19), &operand1) < 0) in arm_get_next_pcs()
223 result = operand1 & operand2; in arm_get_next_pcs()
227 result = operand1 ^ operand2; in arm_get_next_pcs()
231 result = operand1 - operand2; in arm_get_next_pcs()
235 result = operand2 - operand1; in arm_get_next_pcs()
239 result = operand1 + operand2; in arm_get_next_pcs()
243 result = operand1 + operand2 + c; in arm_get_next_pcs()
247 result = operand1 - operand2 + c; in arm_get_next_pcs()
251 result = operand2 - operand1 + c; in arm_get_next_pcs()
[all …]
/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
DTestTreeFragment.py24 self.assertEqual("x", T.stats[0].expr.operand1.name)
26 self.assert_(T.stats[0].expr.operand1 is not T.stats[0].expr.operand2)
46 v = F.root.stats[1].rhs.operand2.operand1
47 a = T.stats[1].rhs.operand2.operand1
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DExprNodes.py8889 self.operand1.constant_result,
8894 operand1 = self.operand1.compile_time_value(denv)
8897 return func(operand1, operand2)
8902 return self.result_type(self.operand1.infer_type(env),
8906 self.operand1 = self.operand1.analyse_types(env)
8914 self.type = self.result_type(self.operand1.type,
8924 return self.is_py_operation_types(self.operand1.type, self.operand2.type)
8930 return (self.operand1.type.is_cpp_class
8934 entry = env.lookup_operator(self.operator, [self.operand1, self.operand2])
8944 self.operand1 = self.operand1.coerce_to(func_type.args[0].type, env)
[all …]
DOptimize.py88 pos, operator=u'==', operand1=node.operand1, operand2=target)
459 operand1=carray_ptr,
469 operand1=ExprNodes.CloneNode(carray_ptr),
581 operand1 = temp,
840 return not_in, cond.operand1, self.extract_in_string_conditions(cond.operand2)
850 if is_common_value(cond.operand1, cond.operand1):
852 return not_in, cond.operand1, [cond.operand2]
855 return not_in, cond.operand1, [cond.operand2]
857 if cond.operand1.is_literal:
858 return not_in, cond.operand2, [cond.operand1]
[all …]
DVisitor.py512 operand1, operand2 = node.operand1, node.operand2
514 operand1, operand2 = operand2, operand1
515 obj_type = operand1.type
522 node, None, [operand1, operand2], None)
DAutoDocTransforms.py32 result = '%s %s %s' % (self._fmt_expr_node(node.operand1, new_prec),
DParseTreeTransforms.py1990 operand1 = dup,
2656 …rpretCompilerDirectives.binop_method_nodes[function](node.function.pos, operand1=node.args[0], ope…
2735 type1 = node.operand1.analyse_as_type(self.local_scope)
2742 type1 = self.specialize_type(type1, node.operand1.pos)
2762 error(node.operand1.pos, "Type is fused")
DParsing.py188 operator = op, operand1 = n1, operand2 = n2)
473 operator = '+', operand1 = arg_tuple,
/external/chromium_org/third_party/mach_override/libudis86/
Ddecode.h166 struct ud_itab_entry_operand operand1; member
Ddecode.c780 u->itab_entry->operand1.type, in decode_operands()
781 u->itab_entry->operand1.size); in decode_operands()
/external/lldb/include/lldb/Core/
DEmulateInstruction.h210 RegisterInfo operand1; // register containing first operand for binary op member
290 info.RegisterRegisterOperands.operand1 = op1_reg; in SetRegisterRegisterOperands()
/external/elfutils/0.153/lib/
Dcolor.c166 E (o1, operand1), in parse_opt()
/external/lldb/source/Core/
DEmulateInstruction.cpp542 info.RegisterRegisterOperands.operand1.name, in Dump()
/external/chromium_org/third_party/cython/src/Cython/
DCodeWriter.py301 self.visit(node.operand1)
/external/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp919 operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results in EmulateMUL()
921 result = operand1 * operand2; in EmulateMUL()
992 uint64_t operand1 = ReadRegisterUnsigned (eRegisterKindDWARF, dwarf_r0 + n, 0, &success); in EmulateMUL() local
1002 uint64_t result = operand1 * operand2; in EmulateMUL()