Lines Matching refs:bc

460     register u32 bc;  in cmp_byte()  local
469 bc = (res & (~d | s)) | (~d & s); in cmp_byte()
470 CONDITIONAL_SET_FLAG(bc & 0x80, F_CF); in cmp_byte()
471 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in cmp_byte()
472 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in cmp_byte()
484 register u32 bc; in cmp_word() local
492 bc = (res & (~d | s)) | (~d & s); in cmp_word()
493 CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF); in cmp_word()
494 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in cmp_word()
495 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in cmp_word()
507 register u32 bc; in cmp_long() local
515 bc = (res & (~d | s)) | (~d & s); in cmp_long()
516 CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF); in cmp_long()
517 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in cmp_long()
518 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in cmp_long()
574 register u32 bc; in dec_byte() local
583 bc = (res & (~d | 1)) | (~d & 1); in dec_byte()
585 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in dec_byte()
586 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in dec_byte()
598 register u32 bc; in dec_word() local
607 bc = (res & (~d | 1)) | (~d & 1); in dec_word()
609 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in dec_word()
610 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in dec_word()
622 register u32 bc; in dec_long() local
631 bc = (res & (~d | 1)) | (~d & 1); in dec_long()
633 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in dec_long()
634 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in dec_long()
772 register u8 bc; in neg_byte() local
784 bc = res | s; in neg_byte()
785 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in neg_byte()
786 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in neg_byte()
798 register u16 bc; in neg_word() local
811 bc = res | s; in neg_word()
812 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in neg_word()
813 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in neg_word()
825 register u32 bc; in neg_long() local
838 bc = res | s; in neg_long()
839 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in neg_long()
840 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in neg_long()
1899 register u32 bc; in sbb_byte() local
1910 bc = (res & (~d | s)) | (~d & s); in sbb_byte()
1911 CONDITIONAL_SET_FLAG(bc & 0x80, F_CF); in sbb_byte()
1912 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in sbb_byte()
1913 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sbb_byte()
1925 register u32 bc; in sbb_word() local
1936 bc = (res & (~d | s)) | (~d & s); in sbb_word()
1937 CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF); in sbb_word()
1938 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in sbb_word()
1939 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sbb_word()
1951 register u32 bc; in sbb_long() local
1962 bc = (res & (~d | s)) | (~d & s); in sbb_long()
1963 CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF); in sbb_long()
1964 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in sbb_long()
1965 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sbb_long()
1977 register u32 bc; in sub_byte() local
1985 bc = (res & (~d | s)) | (~d & s); in sub_byte()
1986 CONDITIONAL_SET_FLAG(bc & 0x80, F_CF); in sub_byte()
1987 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in sub_byte()
1988 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sub_byte()
2000 register u32 bc; in sub_word() local
2008 bc = (res & (~d | s)) | (~d & s); in sub_word()
2009 CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF); in sub_word()
2010 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in sub_word()
2011 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sub_word()
2023 register u32 bc; in sub_long() local
2031 bc = (res & (~d | s)) | (~d & s); in sub_long()
2032 CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF); in sub_long()
2033 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in sub_long()
2034 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sub_long()