Lines Matching refs:bc

196     u32 bc;  in calc_borrow_chain()  local
198 bc = (res & (~d | s)) | (~d & s); in calc_borrow_chain()
199 CONDITIONAL_SET_FLAG(XOR2(bc >> (bits - 2)), F_OF); in calc_borrow_chain()
200 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in calc_borrow_chain()
202 CONDITIONAL_SET_FLAG(bc & (1 << (bits - 1)), F_CF); in calc_borrow_chain()
1660 u32 bc; in sbb_byte() local
1669 bc = (res & (~d | s)) | (~d & s); in sbb_byte()
1670 CONDITIONAL_SET_FLAG(bc & 0x80, F_CF); in sbb_byte()
1671 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in sbb_byte()
1672 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sbb_byte()
1683 u32 bc; in sbb_word() local
1692 bc = (res & (~d | s)) | (~d & s); in sbb_word()
1693 CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF); in sbb_word()
1694 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in sbb_word()
1695 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sbb_word()
1706 u32 bc; in sbb_long() local
1716 bc = (res & (~d | s)) | (~d & s); in sbb_long()
1717 CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF); in sbb_long()
1718 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in sbb_long()
1719 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sbb_long()
1730 u32 bc; in sub_byte() local
1736 bc = (res & (~d | s)) | (~d & s); in sub_byte()
1737 CONDITIONAL_SET_FLAG(bc & 0x80, F_CF); in sub_byte()
1738 CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF); in sub_byte()
1739 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sub_byte()
1750 u32 bc; in sub_word() local
1756 bc = (res & (~d | s)) | (~d & s); in sub_word()
1757 CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF); in sub_word()
1758 CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF); in sub_word()
1759 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sub_word()
1770 u32 bc; in sub_long() local
1776 bc = (res & (~d | s)) | (~d & s); in sub_long()
1777 CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF); in sub_long()
1778 CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF); in sub_long()
1779 CONDITIONAL_SET_FLAG(bc & 0x8, F_AF); in sub_long()