Lines Matching refs:u1

1123     CPU_FloatU u1, u2;  in efsadd()  local
1125 u1.l = op1; in efsadd()
1127 u1.f = float32_add(u1.f, u2.f, &env->vec_status); in efsadd()
1128 return u1.l; in efsadd()
1133 CPU_FloatU u1, u2; in efssub() local
1135 u1.l = op1; in efssub()
1137 u1.f = float32_sub(u1.f, u2.f, &env->vec_status); in efssub()
1138 return u1.l; in efssub()
1143 CPU_FloatU u1, u2; in efsmul() local
1145 u1.l = op1; in efsmul()
1147 u1.f = float32_mul(u1.f, u2.f, &env->vec_status); in efsmul()
1148 return u1.l; in efsmul()
1153 CPU_FloatU u1, u2; in efsdiv() local
1155 u1.l = op1; in efsdiv()
1157 u1.f = float32_div(u1.f, u2.f, &env->vec_status); in efsdiv()
1158 return u1.l; in efsdiv()
1193 CPU_FloatU u1, u2; in efscmplt() local
1195 u1.l = op1; 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
1204 u1.l = op1; 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
1213 u1.l = op1; in efscmpeq()
1215 return float32_eq(u1.f, u2.f, &env->vec_status) ? 4 : 0; in efscmpeq()
1451 CPU_DoubleU u1; in helper_efscfd() local
1454 u1.ll = val; in helper_efscfd()
1455 u2.f = float64_to_float32(u1.d, &env->vec_status); in helper_efscfd()
1463 CPU_FloatU u1; in helper_efdcfs() local
1465 u1.l = val; in helper_efdcfs()
1466 u2.d = float32_to_float64(u1.f, &env->vec_status); in helper_efdcfs()
1474 CPU_DoubleU u1, u2; in helper_efdadd() local
1476 u1.ll = op1; in helper_efdadd()
1478 u1.d = float64_add(u1.d, u2.d, &env->vec_status); in helper_efdadd()
1479 return u1.ll; in helper_efdadd()
1484 CPU_DoubleU u1, u2; in helper_efdsub() local
1486 u1.ll = op1; in helper_efdsub()
1488 u1.d = float64_sub(u1.d, u2.d, &env->vec_status); in helper_efdsub()
1489 return u1.ll; in helper_efdsub()
1494 CPU_DoubleU u1, u2; in helper_efdmul() local
1496 u1.ll = op1; in helper_efdmul()
1498 u1.d = float64_mul(u1.d, u2.d, &env->vec_status); in helper_efdmul()
1499 return u1.ll; in helper_efdmul()
1504 CPU_DoubleU u1, u2; in helper_efddiv() local
1506 u1.ll = op1; in helper_efddiv()
1508 u1.d = float64_div(u1.d, u2.d, &env->vec_status); in helper_efddiv()
1509 return u1.ll; in helper_efddiv()
1515 CPU_DoubleU u1, u2; in helper_efdtstlt() local
1517 u1.ll = op1; 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
1526 u1.ll = op1; 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
1535 u1.ll = op1; in helper_efdtsteq()
1537 return float64_eq_quiet(u1.d, u2.d, &env->vec_status) ? 4 : 0; in helper_efdtsteq()