Lines Matching refs:a_flt_e
457 uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
467 const int64_t exp_diff = a_flt_e - b_flt_e;
473 } else if ((a_flt_e == 0) && (a_flt_m == 0)) {
479 } else if (a_flt_e == 0x7ff && a_flt_m != 0) {
485 } else if (a_flt_e == 0x7ff && a_flt_m == 0) {
491 } else if (exp_diff == 0 && a_flt_e == 0) {
496 e = a_flt_e;
504 if (a_flt_e != 0)
518 e = a_flt_e;
678 uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
690 const int64_t exp_diff = a_flt_e - b_flt_e;
696 } else if ((a_flt_e == 0) && (a_flt_m == 0)) {
702 } else if (a_flt_e == 0x7ff && a_flt_m != 0) {
708 } else if (a_flt_e == 0x7ff && a_flt_m == 0) {
726 if (a_flt_e)
727 --a_flt_e;
734 e = a_flt_e - shift_dist;
736 shift_dist = a_flt_e;
748 a_flt_m += (a_flt_e) ? 0x4000000000000000 : a_flt_m;
760 e = a_flt_e;
833 uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
843 if (a_flt_e == 0x7ff) {
871 if (!(a_flt_e | a_flt_m)) {
885 if (a_flt_e == 0) {
892 _mesa_norm_subnormal_mantissa_f64(a_flt_m , &a_flt_e, &a_flt_m);
904 e = a_flt_e + b_flt_e - 0x3ff;
939 uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
954 if (a_flt_e == 0x7ff) {
998 if (!(a_flt_e | a_flt_m)) {
1031 if (a_flt_e == 0) {
1036 _mesa_norm_subnormal_mantissa_f64(a_flt_m , &a_flt_e, &a_flt_m);
1047 e = a_flt_e + b_flt_e - 0x3fe;
1204 uint32_t a_flt_e = (a_fi.u >> 23) & 0xff;
1219 if (a_flt_e == 0xff) {
1263 if (!(a_flt_e | a_flt_m)) {
1296 if (a_flt_e == 0) {
1301 _mesa_norm_subnormal_mantissa_f32(a_flt_m , &a_flt_e, &a_flt_m);
1312 e = a_flt_e + b_flt_e - 0x7e;