Home
last modified time | relevance | path

Searched refs:flt_e (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/util/
Dhalf_float.c55 const int flt_e = (fi.i >> 23) & 0xff; in _mesa_float_to_half() local
64 if ((flt_e == 0) && (flt_m == 0)) { in _mesa_float_to_half()
69 else if ((flt_e == 0) && (flt_m != 0)) { in _mesa_float_to_half()
74 else if ((flt_e == 0xff) && (flt_m == 0)) { in _mesa_float_to_half()
79 else if ((flt_e == 0xff) && (flt_m != 0)) { in _mesa_float_to_half()
86 const int new_exp = flt_e - 127; in _mesa_float_to_half()
138 int flt_m, flt_e, flt_s; in _mesa_half_to_float() local
149 flt_e = 0; in _mesa_half_to_float()
160 flt_e = 0xff; in _mesa_half_to_float()
165 flt_e = 0xff; in _mesa_half_to_float()
[all …]