HomeSort by: relevance | last modified time | path
    Searched refs:exp_bias (Results 1 - 17 of 17) sorted by relevancy

  /src/external/gpl3/binutils/dist/include/
floatformat.h 70 is intentionally signed as, otherwize, -exp_bias can turn into a
71 very large number (e.g., given the exp_bias of 0x3fff and a 64
72 bit long, the equation (long)(1 - exp_bias) evaluates to
74 int exp_bias; member in struct:floatformat
76 the float, not adjusted by the exp_bias. This usually consists of all
  /src/external/gpl3/binutils.old/dist/include/
floatformat.h 70 is intentionally signed as, otherwize, -exp_bias can turn into a
71 very large number (e.g., given the exp_bias of 0x3fff and a 64
72 bit long, the equation (long)(1 - exp_bias) evaluates to
74 int exp_bias; member in struct:floatformat
76 the float, not adjusted by the exp_bias. This usually consists of all
  /src/external/gpl3/gcc/dist/include/
floatformat.h 70 is intentionally signed as, otherwize, -exp_bias can turn into a
71 very large number (e.g., given the exp_bias of 0x3fff and a 64
72 bit long, the equation (long)(1 - exp_bias) evaluates to
74 int exp_bias; member in struct:floatformat
76 the float, not adjusted by the exp_bias. This usually consists of all
  /src/external/gpl3/gcc.old/dist/include/
floatformat.h 70 is intentionally signed as, otherwize, -exp_bias can turn into a
71 very large number (e.g., given the exp_bias of 0x3fff and a 64
72 bit long, the equation (long)(1 - exp_bias) evaluates to
74 int exp_bias; member in struct:floatformat
76 the float, not adjusted by the exp_bias. This usually consists of all
  /src/external/gpl3/gcc.old/dist/libgcc/config/spu/
divv2df3.c 36 vec_int4 exp, exp_bias; local
145 exp_bias = spu_xor(spu_rlmaska(exp, -31), 64);
146 exp = spu_sub(exp, exp_bias);
148 q1 = spu_sel(q1, (vec_double2)spu_add((vec_int4)q1, spu_sl(exp_bias, 20)), exp_mask);
  /src/external/gpl3/gdb/dist/include/
floatformat.h 70 is intentionally signed as, otherwize, -exp_bias can turn into a
71 very large number (e.g., given the exp_bias of 0x3fff and a 64
72 bit long, the equation (long)(1 - exp_bias) evaluates to
74 int exp_bias; member in struct:floatformat
76 the float, not adjusted by the exp_bias. This usually consists of all
  /src/external/gpl3/gdb.old/dist/include/
floatformat.h 70 is intentionally signed as, otherwize, -exp_bias can turn into a
71 very large number (e.g., given the exp_bias of 0x3fff and a 64
72 bit long, the equation (long)(1 - exp_bias) evaluates to
74 int exp_bias; member in struct:floatformat
76 the float, not adjusted by the exp_bias. This usually consists of all
  /src/external/gpl3/binutils/dist/libiberty/
floatformat.c 541 exponent = 1 - fmt->exp_bias;
544 exponent -= fmt->exp_bias;
676 if (exponent + fmt->exp_bias - 1 > 0)
678 fmt->exp_len, exponent + fmt->exp_bias - 1);
685 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
703 && exponent + fmt->exp_bias - 1 > 0)
  /src/external/gpl3/binutils.old/dist/libiberty/
floatformat.c 541 exponent = 1 - fmt->exp_bias;
544 exponent -= fmt->exp_bias;
676 if (exponent + fmt->exp_bias - 1 > 0)
678 fmt->exp_len, exponent + fmt->exp_bias - 1);
685 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
703 && exponent + fmt->exp_bias - 1 > 0)
  /src/external/gpl3/gcc/dist/libiberty/
floatformat.c 546 exponent = 1 - fmt->exp_bias;
549 exponent -= fmt->exp_bias;
681 if (exponent + fmt->exp_bias - 1 > 0)
683 fmt->exp_len, exponent + fmt->exp_bias - 1);
690 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
708 && exponent + fmt->exp_bias - 1 > 0)
  /src/external/gpl3/gcc.old/dist/libiberty/
floatformat.c 546 exponent = 1 - fmt->exp_bias;
549 exponent -= fmt->exp_bias;
681 if (exponent + fmt->exp_bias - 1 > 0)
683 fmt->exp_len, exponent + fmt->exp_bias - 1);
690 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
708 && exponent + fmt->exp_bias - 1 > 0)
  /src/external/gpl3/gdb/dist/libiberty/
floatformat.c 537 exponent = 1 - fmt->exp_bias;
540 exponent -= fmt->exp_bias;
672 if (exponent + fmt->exp_bias - 1 > 0)
674 fmt->exp_len, exponent + fmt->exp_bias - 1);
681 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
699 && exponent + fmt->exp_bias - 1 > 0)
  /src/external/gpl3/gdb.old/dist/libiberty/
floatformat.c 537 exponent = 1 - fmt->exp_bias;
540 exponent -= fmt->exp_bias;
672 if (exponent + fmt->exp_bias - 1 > 0)
674 fmt->exp_len, exponent + fmt->exp_bias - 1);
681 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
699 && exponent + fmt->exp_bias - 1 > 0)
  /src/external/gpl3/gcc/dist/libgcc/config/ft32/
lib1funcs.S 34 exp_bias: .long 127 label
  /src/external/gpl3/gcc.old/dist/libgcc/config/ft32/
lib1funcs.S 34 exp_bias: .long 127 label
  /src/external/gpl3/gdb/dist/gdb/
target-float.c 692 Note the cast to int; exp_bias is unsigned, so it's important to
695 exponent -= fmt->exp_bias;
697 exponent = 1 - fmt->exp_bias;
842 if (exponent + fmt->exp_bias <= 0)
853 if (exponent + fmt->exp_bias >= (1 << fmt->exp_len))
865 exponent + fmt->exp_bias - 1);
1294 Note the cast to int; exp_bias is unsigned, so it's important to
1297 exponent -= fmt->exp_bias;
1299 exponent = 1 - fmt->exp_bias;
1418 if (exponent + fmt->exp_bias <= 0
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
target-float.c 692 Note the cast to int; exp_bias is unsigned, so it's important to
695 exponent -= fmt->exp_bias;
697 exponent = 1 - fmt->exp_bias;
842 if (exponent + fmt->exp_bias <= 0)
853 if (exponent + fmt->exp_bias >= (1 << fmt->exp_len))
865 exponent + fmt->exp_bias - 1);
1294 Note the cast to int; exp_bias is unsigned, so it's important to
1297 exponent -= fmt->exp_bias;
1299 exponent = 1 - fmt->exp_bias;
1418 if (exponent + fmt->exp_bias <= 0
    [all...]

Completed in 44 milliseconds