Home
last modified time | relevance | path

Searched refs:F_PF (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/drivers/bios_emulator/x86emu/
H A Dprim_ops.c134 CONDITIONAL_SET_FLAG(PARITY(res & 0xFF), F_PF); in set_parity_flag()
1217 SET_FLAG(F_PF); in shl_byte()
1255 SET_FLAG(F_PF); in shl_word()
1290 SET_FLAG(F_PF); in shl_long()
1325 SET_FLAG(F_PF); in shr_byte()
1361 CLEAR_FLAG(F_PF); in shr_word()
1395 CLEAR_FLAG(F_PF); in shr_long()
1426 SET_FLAG(F_PF); in sar_byte()
1432 CLEAR_FLAG(F_PF); in sar_byte()
1464 SET_FLAG(F_PF); in sar_word()
[all …]
H A Ddebug.c402 if (ACCESS_FLAG(F_PF)) in x86emu_dump_regs()
452 if (ACCESS_FLAG(F_PF)) in x86emu_dump_xregs()
H A Dops2.c119 return ACCESS_FLAG(F_PF); in x86emu_check_jump_condition()
123 return !ACCESS_FLAG(F_PF); in x86emu_check_jump_condition()
219 cond = ACCESS_FLAG(F_PF); in x86emuOp2_set_byte()
223 cond = !ACCESS_FLAG(F_PF); in x86emuOp2_set_byte()
/openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/
H A DUpdate-x86emu-from-X.org.patch596 - if (ACCESS_FLAG(F_PF)) printk("PE ");
638 + if (ACCESS_FLAG(F_PF))
678 - if (ACCESS_FLAG(F_PF)) printk("PE ");
720 + if (ACCESS_FLAG(F_PF))
6817 if (ACCESS_FLAG(F_PF))
6838 if (!ACCESS_FLAG(F_PF))
11604 cond = ACCESS_FLAG(F_PF);
11609 cond = !ACCESS_FLAG(F_PF);
11719 cond = ACCESS_FLAG(F_PF);
11724 cond = !ACCESS_FLAG(F_PF);
[all …]
/openbmc/u-boot/drivers/bios_emulator/include/x86emu/
H A Dregs.h201 #define F_PF 0x0004 /* PARITY flag */ macro