Searched refs:XOR2 (Results 1 – 2 of 2) sorted by relevance
/openbmc/u-boot/drivers/bios_emulator/x86emu/ |
H A D | prim_ops.c | 120 #define XOR2(x) (((x) ^ ((x)>>1)) & 0x1) macro 187 CONDITIONAL_SET_FLAG(XOR2(cc >> (bits - 2)), F_OF); in calc_carry_chain() 199 CONDITIONAL_SET_FLAG(XOR2(bc >> (bits - 2)), F_OF); in calc_borrow_chain() 786 CONDITIONAL_SET_FLAG(cnt == 1 && XOR2(cf + ((res >> 6) & 0x2)), in rcl_byte() 811 CONDITIONAL_SET_FLAG(cnt == 1 && XOR2(cf + ((res >> 14) & 0x2)), in rcl_word() 835 CONDITIONAL_SET_FLAG(cnt == 1 && XOR2(cf + ((res >> 30) & 0x2)), in rcl_long() 918 CONDITIONAL_SET_FLAG(XOR2(ocf + ((d >> 6) & 0x2)), in rcr_byte() 950 CONDITIONAL_SET_FLAG(XOR2(ocf + ((d >> 14) & 0x2)), in rcr_word() 983 CONDITIONAL_SET_FLAG(XOR2(ocf + ((d >> 30) & 0x2)), in rcr_long() 1029 XOR2((res & 0x1) + ((res >> 6) & 0x2)), in rol_byte() [all …]
|
/openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/ |
H A D | Update-x86emu-from-X.org.patch | 14876 - CONDITIONAL_SET_FLAG(XOR2(cc >> 6), F_OF); 14881 + CONDITIONAL_SET_FLAG(XOR2(cc >> 6), F_OF); 14919 - CONDITIONAL_SET_FLAG(XOR2(cc >> 14), F_OF); 14924 + CONDITIONAL_SET_FLAG(XOR2(cc >> 14), F_OF); 14976 - CONDITIONAL_SET_FLAG(XOR2(cc >> 30), F_OF); 14981 + CONDITIONAL_SET_FLAG(XOR2(cc >> 30), F_OF); 15012 - CONDITIONAL_SET_FLAG(XOR2(cc >> 6), F_OF); 15017 + CONDITIONAL_SET_FLAG(XOR2(cc >> 6), F_OF); 15048 - CONDITIONAL_SET_FLAG(XOR2(cc >> 14), F_OF); 15053 + CONDITIONAL_SET_FLAG(XOR2(cc >> 14), F_OF); [all …]
|