Home
last modified time | relevance | path

Searched refs:CONDITIONAL_SET_FLAG (Results 1 – 3 of 3) sorted by relevance

/haiku/src/libs/x86emu/
H A Dprim_ops.c150 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in aaa_word()
151 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in aaa_word()
176 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in aas_word()
177 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in aas_word()
198 CONDITIONAL_SET_FLAG(l & 0x80, F_SF); in aad_word()
199 CONDITIONAL_SET_FLAG(l == 0, F_ZF); in aad_word()
200 CONDITIONAL_SET_FLAG(PARITY(l & 0xff), F_PF); in aad_word()
220 CONDITIONAL_SET_FLAG(l & 0x80, F_SF); in aam_word()
221 CONDITIONAL_SET_FLAG(l == 0, F_ZF); in aam_word()
222 CONDITIONAL_SET_FLAG(PARITY(l & 0xff), F_PF); in aam_word()
[all …]
H A Dops2.c383 CONDITIONAL_SET_FLAG(srcval & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
396 CONDITIONAL_SET_FLAG(srcval & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
411 CONDITIONAL_SET_FLAG(srcval & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
424 CONDITIONAL_SET_FLAG(srcval & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
439 CONDITIONAL_SET_FLAG(srcval & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
452 CONDITIONAL_SET_FLAG(srcval & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
464 CONDITIONAL_SET_FLAG(*srcreg & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
474 CONDITIONAL_SET_FLAG(*srcreg & (0x1 << bit), F_CF); in x86emuOp2_bt_R()
807 CONDITIONAL_SET_FLAG(srcval & mask, F_CF); in x86emuOp2_bts_R()
822 CONDITIONAL_SET_FLAG(srcval & mask, F_CF); in x86emuOp2_bts_R()
[all …]
/haiku/headers/libs/x86emu/x86emu/
H A Dregs.h211 #define CONDITIONAL_SET_FLAG(COND,FLAG) \ macro