Home | History | Annotate | Download | only in src

Lines Matching defs:ex

185     int ex, shx;
190 ex = (ix >> 23) - 127;
191 shx = ex % 3;
193 ex = (ex - shx) / 3; /* exponent of cube root */
210 /* fr *= 2^ex * sign */
213 v.i = (v.i + (ex << 23) + s) & (m.i*2 != 0 ? -1 : 0);