Home
last modified time | relevance | path

Searched refs:operand2 (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_loc.c46 uint64_t operand2; in _dwarf_loc_fill_loc() local
60 operand2 = 0; in _dwarf_loc_fill_loc()
273 operand2 = _dwarf_decode_uleb128(&p); in _dwarf_loc_fill_loc()
282 operand2 = _dwarf_decode_sleb128(&p); in _dwarf_loc_fill_loc()
296 operand2 = (Dwarf_Unsigned) (uintptr_t) p; in _dwarf_loc_fill_loc()
336 operand2 = _dwarf_decode_sleb128(&p); in _dwarf_loc_fill_loc()
346 operand2 = (Dwarf_Unsigned) (uintptr_t) p; in _dwarf_loc_fill_loc()
359 lbuf->ld_s[count].lr_number2 = operand2; in _dwarf_loc_fill_loc()
371 Dwarf_Small atom, Dwarf_Unsigned operand1, Dwarf_Unsigned operand2, in _dwarf_loc_expr_add_atom() argument
593 len = _dwarf_write_sleb128(p, pe, operand2); in _dwarf_loc_expr_add_atom()
/freebsd/contrib/mandoc/
H A Droff.c2928 int mypos, operand2; in roff_evalnum() local
2967 *res += operand2; in roff_evalnum()
2970 *res -= operand2; in roff_evalnum()
2973 *res *= operand2; in roff_evalnum()
2976 if (operand2 == 0) { in roff_evalnum()
2982 *res /= operand2; in roff_evalnum()
2985 if (operand2 == 0) { in roff_evalnum()
2991 *res %= operand2; in roff_evalnum()
3018 if (operand2 < *res) in roff_evalnum()
3019 *res = operand2; in roff_evalnum()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h220 operand2; // register containing second operand for binary op member
285 info.RegisterRegisterOperands.operand2 = op2_reg; in SetRegisterRegisterOperands()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp644 uint64_t operand2 = imm; in EmulateADDSUBImm() local
648 operand2 = NOT(operand2); in EmulateADDSUBImm()
657 result = AddWithCarry(datasize, operand1, operand2, carry_in, proc_state); in EmulateADDSUBImm()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1476 result = operand1 * operand2; in EmulateMUL()
1553 uint64_t operand2 = in EmulateMUL() local
1559 uint64_t result = operand1 * operand2; in EmulateMUL()
12704 uint32_t operand2; in EmulateSUBSPcLrEtc() local
12714 operand2 = imm32; in EmulateSUBSPcLrEtc()
12727 result.result = Rn & operand2; in EmulateSUBSPcLrEtc()
12732 result.result = Rn ^ operand2; in EmulateSUBSPcLrEtc()
12767 result.result = Rn | operand2; in EmulateSUBSPcLrEtc()
12772 result.result = operand2; in EmulateSUBSPcLrEtc()
12777 result.result = Rn & ~(operand2); in EmulateSUBSPcLrEtc()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp483 info.RegisterRegisterOperands.operand2.name); in Dump()