Lines Matching full:u2

1123     CPU_FloatU u1, u2;  in efsadd()  local
1126 u2.l = op2; in efsadd()
1127 u1.f = float32_add(u1.f, u2.f, &env->vec_status); in efsadd()
1133 CPU_FloatU u1, u2; in efssub() local
1136 u2.l = op2; in efssub()
1137 u1.f = float32_sub(u1.f, u2.f, &env->vec_status); in efssub()
1143 CPU_FloatU u1, u2; in efsmul() local
1146 u2.l = op2; in efsmul()
1147 u1.f = float32_mul(u1.f, u2.f, &env->vec_status); in efsmul()
1153 CPU_FloatU u1, u2; in efsdiv() local
1156 u2.l = op2; in efsdiv()
1157 u1.f = float32_div(u1.f, u2.f, &env->vec_status); in efsdiv()
1193 CPU_FloatU u1, u2; in efscmplt() local
1196 u2.l = op2; in efscmplt()
1197 return float32_lt(u1.f, u2.f, &env->vec_status) ? 4 : 0; in efscmplt()
1202 CPU_FloatU u1, u2; in efscmpgt() local
1205 u2.l = op2; in efscmpgt()
1206 return float32_le(u1.f, u2.f, &env->vec_status) ? 0 : 4; in efscmpgt()
1211 CPU_FloatU u1, u2; in efscmpeq() local
1214 u2.l = op2; in efscmpeq()
1215 return float32_eq(u1.f, u2.f, &env->vec_status) ? 4 : 0; in efscmpeq()
1452 CPU_FloatU u2; in helper_efscfd() local
1455 u2.f = float64_to_float32(u1.d, &env->vec_status); in helper_efscfd()
1457 return u2.l; in helper_efscfd()
1462 CPU_DoubleU u2; in helper_efdcfs() local
1466 u2.d = float32_to_float64(u1.f, &env->vec_status); in helper_efdcfs()
1468 return u2.ll; in helper_efdcfs()
1474 CPU_DoubleU u1, u2; in helper_efdadd() local
1477 u2.ll = op2; in helper_efdadd()
1478 u1.d = float64_add(u1.d, u2.d, &env->vec_status); in helper_efdadd()
1484 CPU_DoubleU u1, u2; in helper_efdsub() local
1487 u2.ll = op2; in helper_efdsub()
1488 u1.d = float64_sub(u1.d, u2.d, &env->vec_status); in helper_efdsub()
1494 CPU_DoubleU u1, u2; in helper_efdmul() local
1497 u2.ll = op2; in helper_efdmul()
1498 u1.d = float64_mul(u1.d, u2.d, &env->vec_status); in helper_efdmul()
1504 CPU_DoubleU u1, u2; in helper_efddiv() local
1507 u2.ll = op2; in helper_efddiv()
1508 u1.d = float64_div(u1.d, u2.d, &env->vec_status); in helper_efddiv()
1515 CPU_DoubleU u1, u2; in helper_efdtstlt() local
1518 u2.ll = op2; in helper_efdtstlt()
1519 return float64_lt(u1.d, u2.d, &env->vec_status) ? 4 : 0; in helper_efdtstlt()
1524 CPU_DoubleU u1, u2; in helper_efdtstgt() local
1527 u2.ll = op2; in helper_efdtstgt()
1528 return float64_le(u1.d, u2.d, &env->vec_status) ? 0 : 4; in helper_efdtstgt()
1533 CPU_DoubleU u1, u2; in helper_efdtsteq() local
1536 u2.ll = op2; in helper_efdtsteq()
1537 return float64_eq_quiet(u1.d, u2.d, &env->vec_status) ? 4 : 0; in helper_efdtsteq()