Home | History | Annotate | Download | only in memcheck

Lines Matching refs:expo

1296       UInt x0, x1, sign, expo, mant0, bIGENDIAN = 1; \
1302 expo = (x0 >> 20) & 0x7FF; \
1304 if ( (sign == 0 && expo >= 1 && expo <= 0x7FE) /* +normal */ \
1305 || (sign == 0 && expo == 0 \
1321 if ( (sign == 1 && expo >= 1 && expo <= 0x7FE) /* -normal */ \
1322 || (sign == 1 && expo == 0 \
1328 if ((expo | mant0 | x1) == 0) \
1330 if (expo == 0x7FF && (mant0 | x1) == 0) { \