Home
last modified time | relevance | path

Searched refs:inst2 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/xz/src/liblzma/simple/
H A Driscv.c308 #define NOT_AUIPC_PAIR(auipc, inst2) \ argument
309 ((((auipc) << 8) ^ ((inst2) - 3)) & 0xF8003)
447 uint32_t inst2 = read32le(buffer + i + 4); in riscv_encode() local
449 if (NOT_AUIPC_PAIR(inst, inst2)) { in riscv_encode()
536 addr += (inst2 >> 20) in riscv_encode()
537 - ((inst2 >> 19) & 0x1000); in riscv_encode()
545 inst = 0x17 | (2 << 7) | (inst2 << 12); in riscv_encode()
684 uint32_t inst2; in riscv_decode() local
694 inst2 = read32le(buffer + i + 4); in riscv_decode()
696 if (NOT_AUIPC_PAIR(inst, inst2)) { in riscv_decode()
[all …]
/freebsd/contrib/bc/src/
H A Dprogram.c1739 uchar inst2; in bc_program_incdec() local
1755 inst2 = BC_INST_ASSIGN_PLUS_NO_VAL + (inst & 0x01); in bc_program_incdec()
1758 bc_program_assign(p, inst2); in bc_program_incdec()