Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/main/
Dimports.c331 const int flt_e = (fi.i >> 23) & 0xff; in _mesa_float_to_half() local
340 if ((flt_e == 0) && (flt_m == 0)) { in _mesa_float_to_half()
345 else if ((flt_e == 0) && (flt_m != 0)) { in _mesa_float_to_half()
350 else if ((flt_e == 0xff) && (flt_m == 0)) { in _mesa_float_to_half()
355 else if ((flt_e == 0xff) && (flt_m != 0)) { in _mesa_float_to_half()
362 const int new_exp = flt_e - 127; in _mesa_float_to_half()
419 int flt_m, flt_e, flt_s; in _mesa_half_to_float() local
430 flt_e = 0; in _mesa_half_to_float()
441 flt_e = 0xff; in _mesa_half_to_float()
446 flt_e = 0xff; in _mesa_half_to_float()
[all …]