Lines Matching refs:cf

726     unsigned int res, cnt, mask, cf;  in rcl_byte()  local
758 cf = (d >> (8 - cnt)) & 0x1; in rcl_byte()
781 CONDITIONAL_SET_FLAG(cf, F_CF); in rcl_byte()
786 CONDITIONAL_SET_FLAG(cnt == 1 && XOR2(cf + ((res >> 6) & 0x2)), in rcl_byte()
799 unsigned int res, cnt, mask, cf; in rcl_word() local
803 cf = (d >> (16 - cnt)) & 0x1; in rcl_word()
810 CONDITIONAL_SET_FLAG(cf, F_CF); in rcl_word()
811 CONDITIONAL_SET_FLAG(cnt == 1 && XOR2(cf + ((res >> 14) & 0x2)), in rcl_word()
823 u32 res, cnt, mask, cf; in rcl_long() local
827 cf = (d >> (32 - cnt)) & 0x1; in rcl_long()
834 CONDITIONAL_SET_FLAG(cf, F_CF); in rcl_long()
835 CONDITIONAL_SET_FLAG(cnt == 1 && XOR2(cf + ((res >> 30) & 0x2)), in rcl_long()
848 u32 mask, cf, ocf = 0; in rcr_byte() local
877 cf = d & 0x1; in rcr_byte()
887 cf = (d >> (cnt - 1)) & 0x1; in rcr_byte()
913 CONDITIONAL_SET_FLAG(cf, F_CF); in rcr_byte()
932 u32 mask, cf, ocf = 0; in rcr_word() local
938 cf = d & 0x1; in rcr_word()
941 cf = (d >> (cnt - 1)) & 0x1; in rcr_word()
948 CONDITIONAL_SET_FLAG(cf, F_CF); in rcr_word()
964 u32 mask, cf, ocf = 0; in rcr_long() local
970 cf = d & 0x1; in rcr_long()
973 cf = (d >> (cnt - 1)) & 0x1; in rcr_long()
981 CONDITIONAL_SET_FLAG(cf, F_CF); in rcr_long()
1187 unsigned int cnt, res, cf; in shl_byte() local
1195 cf = d & (1 << (8 - cnt)); in shl_byte()
1196 CONDITIONAL_SET_FLAG(cf, F_CF); in shl_byte()
1229 unsigned int cnt, res, cf; in shl_word() local
1235 cf = d & (1 << (16 - cnt)); in shl_word()
1236 CONDITIONAL_SET_FLAG(cf, F_CF); in shl_word()
1267 unsigned int cnt, res, cf; in shl_long() local
1273 cf = d & (1 << (32 - cnt)); in shl_long()
1274 CONDITIONAL_SET_FLAG(cf, F_CF); in shl_long()
1302 unsigned int cnt, res, cf; in shr_byte() local
1307 cf = d & (1 << (cnt - 1)); in shr_byte()
1309 CONDITIONAL_SET_FLAG(cf, F_CF); in shr_byte()
1337 unsigned int cnt, res, cf; in shr_word() local
1342 cf = d & (1 << (cnt - 1)); in shr_word()
1344 CONDITIONAL_SET_FLAG(cf, F_CF); in shr_word()
1372 unsigned int cnt, res, cf; in shr_long() local
1377 cf = d & (1 << (cnt - 1)); in shr_long()
1379 CONDITIONAL_SET_FLAG(cf, F_CF); in shr_long()
1406 unsigned int cnt, res, cf, mask, sf; in sar_byte() local
1413 cf = d & (1 << (cnt - 1)); in sar_byte()
1415 CONDITIONAL_SET_FLAG(cf, F_CF); in sar_byte()
1444 unsigned int cnt, res, cf, mask, sf; in sar_word() local
1451 cf = d & (1 << (cnt - 1)); in sar_word()
1453 CONDITIONAL_SET_FLAG(cf, F_CF); in sar_word()
1482 u32 cnt, res, cf, mask, sf; in sar_long() local
1489 cf = d & (1 << (cnt - 1)); in sar_long()
1491 CONDITIONAL_SET_FLAG(cf, F_CF); in sar_long()
1520 unsigned int cnt, res, cf; in shld_word() local
1526 cf = d & (1 << (16 - cnt)); in shld_word()
1527 CONDITIONAL_SET_FLAG(cf, F_CF); in shld_word()
1555 unsigned int cnt, res, cf; in shld_long() local
1561 cf = d & (1 << (32 - cnt)); in shld_long()
1562 CONDITIONAL_SET_FLAG(cf, F_CF); in shld_long()
1590 unsigned int cnt, res, cf; in shrd_word() local
1595 cf = d & (1 << (cnt - 1)); in shrd_word()
1597 CONDITIONAL_SET_FLAG(cf, F_CF); in shrd_word()
1625 unsigned int cnt, res, cf; in shrd_long() local
1630 cf = d & (1 << (cnt - 1)); in shrd_long()
1632 CONDITIONAL_SET_FLAG(cf, F_CF); in shrd_long()