HomeSort by: relevance | last modified time | path
    Searched defs:EXPBIAS (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgcc/
fp-bit.h 150 # define EXPBIAS 16383
160 # define EXPBIAS 1023
185 # define EXPBIAS 127
208 # define EXPBIAS 1023
306 #define NORMAL_EXPMIN (-(EXPBIAS)+1)
  /src/external/gpl3/gcc.old/dist/libgcc/
fp-bit.h 150 # define EXPBIAS 16383
160 # define EXPBIAS 1023
185 # define EXPBIAS 127
208 # define EXPBIAS 1023
306 #define NORMAL_EXPMIN (-(EXPBIAS)+1)
  /src/external/gpl3/gdb/dist/sim/ppc/
dp-bit.c 101 # define EXPBIAS 127
121 # define EXPBIAS 1023
213 #define NORMAL_EXPMIN (-(EXPBIAS)+1)
376 else if (src->normal_exp > EXPBIAS)
383 dst.bits.exp = src->normal_exp + EXPBIAS;
428 dst->normal_exp = src->bits.exp - EXPBIAS + 1;
468 dst->normal_exp = src->bits.exp - EXPBIAS;
  /src/external/gpl3/gdb.old/dist/sim/ppc/
dp-bit.c 101 # define EXPBIAS 127
121 # define EXPBIAS 1023
213 #define NORMAL_EXPMIN (-(EXPBIAS)+1)
376 else if (src->normal_exp > EXPBIAS)
383 dst.bits.exp = src->normal_exp + EXPBIAS;
428 dst->normal_exp = src->bits.exp - EXPBIAS + 1;
468 dst->normal_exp = src->bits.exp - EXPBIAS;
  /src/external/gpl3/gdb/dist/sim/common/
sim-fpu.c 95 (sign ? '-' : '+') 1.<FRAC> x 2 ^ (BIASEDEXP - EXPBIAS)
98 (sign ? "-" : "+") 0.<FRAC> x 2 ^ (- EXPBIAS)
124 #define EXPBIAS (is_double ? EXPBIAS64 : EXPBIAS32)
160 #define NORMAL_EXPMIN (-(EXPBIAS)+1)
164 #define NORMAL_EXPMAX (EXPBIAS)
264 exp = (src->normal_exp + EXPBIAS);
343 dst->normal_exp = exp - EXPBIAS + 1;
363 /* dst->normal_exp = EXPBIAS; */
389 dst->normal_exp = exp - EXPBIAS;
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-fpu.c 95 (sign ? '-' : '+') 1.<FRAC> x 2 ^ (BIASEDEXP - EXPBIAS)
98 (sign ? "-" : "+") 0.<FRAC> x 2 ^ (- EXPBIAS)
124 #define EXPBIAS (is_double ? EXPBIAS64 : EXPBIAS32)
160 #define NORMAL_EXPMIN (-(EXPBIAS)+1)
164 #define NORMAL_EXPMAX (EXPBIAS)
264 exp = (src->normal_exp + EXPBIAS);
343 dst->normal_exp = exp - EXPBIAS + 1;
363 /* dst->normal_exp = EXPBIAS; */
389 dst->normal_exp = exp - EXPBIAS;

Completed in 35 milliseconds