Lines Matching refs:flt_e
55 const int flt_e = (fi.i >> 23) & 0xff; in _float_to_half() local
64 if ((flt_e == 0) && (flt_m == 0)) { in _float_to_half()
68 } else if ((flt_e == 0) && (flt_m != 0)) { in _float_to_half()
72 } else if ((flt_e == 0xff) && (flt_m == 0)) { in _float_to_half()
76 } else if ((flt_e == 0xff) && (flt_m != 0)) { in _float_to_half()
82 const int new_exp = flt_e - 127; in _float_to_half()
130 int flt_m, flt_e, flt_s; in _half_to_float() local
140 flt_e = 0; in _half_to_float()
149 flt_e = 0xff; in _half_to_float()
153 flt_e = 0xff; in _half_to_float()
157 flt_e = e + 112; in _half_to_float()
161 fi.i = (flt_s << 31) | (flt_e << 23) | flt_m; in _half_to_float()