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

/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dhalf_float.c58 const int flt_e = (fi.i >> 23) & 0xff; local in function:_mesa_float_to_half
67 if ((flt_e == 0) && (flt_m == 0)) {
72 else if ((flt_e == 0) && (flt_m != 0)) {
77 else if ((flt_e == 0xff) && (flt_m == 0)) {
82 else if ((flt_e == 0xff) && (flt_m != 0)) {
89 const int new_exp = flt_e - 127;
141 int flt_m, flt_e, flt_s; local in function:_mesa_half_to_float
152 flt_e = 0;
163 flt_e = 0xff;
168 flt_e
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dhalf_float.c61 const int flt_e = (fi.i >> 23) & 0xff; local in function:_mesa_float_to_half_slow
70 if ((flt_e == 0) && (flt_m == 0)) {
75 else if ((flt_e == 0) && (flt_m != 0)) {
80 else if ((flt_e == 0xff) && (flt_m == 0)) {
85 else if ((flt_e == 0xff) && (flt_m != 0)) {
92 const int new_exp = flt_e - 127;
H A Dsoftfloat.c1391 uint64_t flt_e = (di.u >> 52) & 0x7ff; local in function:_mesa_double_to_f32
1397 if (flt_e == 0x7ff) {
1414 if (!(flt_e | flt_m)) {
1423 if ( ! (flt_e | m) ) {
1431 return _mesa_round_f32(s, flt_e - 0x381, m | 0x40000000, rtz);
1445 const uint32_t flt_e = (fi.u >> 23) & 0xff; local in function:_mesa_float_to_half_rtz_slow
1451 if (flt_e == 0xff) {
1464 if (!(flt_e | flt_m)) {
1471 if ( ! (flt_e | m) ) {
1477 return _mesa_roundtozero_f16(s, flt_e
[all...]
/xsrc/external/mit/mesa-demos/dist/src/trivial/
H A Dvp-array-hf.c23 const int flt_e = (fi.i >> 23) & 0xff; local in function:_mesa_float_to_half
32 if ((flt_e == 0) && (flt_m == 0)) {
37 else if ((flt_e == 0) && (flt_m != 0)) {
42 else if ((flt_e == 0xff) && (flt_m == 0)) {
47 else if ((flt_e == 0xff) && (flt_m != 0)) {
54 const int new_exp = flt_e - 127;

Completed in 17 milliseconds