Searched defs:operand1 (Results 1 - 5 of 5) sorted by relevance

/external/libunwind/src/dwarf/
H A DGexpr.c193 unw_word_t operand1 = 0, operand2 = 0, tmp1, tmp2, tmp3, end_addr; local
255 &operand1, arg)) < 0)
293 (int) opcode - DW_OP_breg0, (unsigned long) operand1);
298 push (tmp1 + operand1);
303 (int) operand1, (unsigned long) operand2);
305 dwarf_to_unw_regnum (operand1), &tmp1)) < 0)
327 Debug (15, "OP_regx(r%d)\n", (int) operand1);
328 *valp = dwarf_to_unw_regnum (operand1);
340 Debug (15, "OP_const(0x%lx)\n", (unsigned long) operand1);
341 push (operand1);
[all...]
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dtrace.c173 uint32_t operand1, operand2, result = 0; local
204 (proc, BITS(this_instr, 16, 19), &operand1) < 0)
223 result = operand1 & operand2;
227 result = operand1 ^ operand2;
231 result = operand1 - operand2;
235 result = operand2 - operand1;
239 result = operand1 + operand2;
243 result = operand1 + operand2 + c;
247 result = operand1 - operand2 + c;
251 result = operand2 - operand1
[all...]
/external/lldb/include/lldb/Core/
H A DEmulateInstruction.h210 RegisterInfo operand1; // register containing first operand for binary op member in struct:lldb_private::EmulateInstruction::Context::__anon25225::RegisterRegisterOperands
290 info.RegisterRegisterOperands.operand1 = op1_reg;
/external/chromium_org/third_party/mach_override/libudis86/
H A Ddecode.h166 struct ud_itab_entry_operand operand1; member in struct:ud_itab_entry
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp919 operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results
921 result = operand1 * operand2;
991 // operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results
992 uint64_t operand1 = ReadRegisterUnsigned (eRegisterKindDWARF, dwarf_r0 + n, 0, &success); local
1001 // result = operand1 * operand2;
1002 uint64_t result = operand1 * operand2;

Completed in 239 milliseconds