HomeSort by relevance Sort by last modified time
    Searched refs:EXPBIAS (Results 1 - 2 of 2) sorted by null

  /external/qemu/target-i386/
exec.h 148 #define EXPBIAS 16383
152 #define BIASEXPONENT(fp) fp.l.upper = (fp.l.upper & ~(0x7fff)) | EXPBIAS
177 #define EXPBIAS 1023
185 #define BIASEXPONENT(fp) fp.l.upper = (fp.l.upper & ~(0x7ff << 20)) | (EXPBIAS << 20)
210 e = (upper & 0x7fff) - 16383 + EXPBIAS; /* exponent */
231 e = EXPD(temp) - EXPBIAS + 16383;
op_helper.c     [all...]

Completed in 20 milliseconds