HomeSort by: relevance | last modified time | path
    Searched defs:exponent (Results 1 - 25 of 142) sorted by relevancy

1 2 3 4 5 6

  /src/lib/libc/gen/
floatunditf_ieee754.c 49 int exponent, zeros; local
58 exponent = 64 - zeros;
61 exponent = 63 - zeros;
65 ux.extu_exp = EXT_EXP_BIAS + exponent;
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatditf.c 36 // Exponent of (fp_t)a is the width of abs(a).
37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs); local
41 const int shift = significandBits - exponent;
44 // Insert the exponent
45 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsidf.c 37 // Exponent of (fp_t)a is the width of abs(a).
38 const int exponent = (aWidth - 1) - __builtin_clz(a); local
44 const int shift = significandBits - exponent;
47 // Insert the exponent
48 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsitf.c 36 // Exponent of (fp_t)a is the width of abs(a).
37 const int exponent = (aWidth - 1) - __builtin_clz(aAbs); local
41 const int shift = significandBits - exponent;
44 // Insert the exponent
45 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunditf.c 27 // Exponent of (fp_t)a is the width of abs(a).
28 const int exponent = (aWidth - 1) - __builtin_clzll(a); local
32 const int shift = significandBits - exponent;
35 // Insert the exponent
36 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsidf.c 29 // Exponent of (fp_t)a is the width of abs(a).
30 const int exponent = (aWidth - 1) - __builtin_clz(a); local
34 const int shift = significandBits - exponent;
37 // Insert the exponent
38 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsitf.c 27 // Exponent of (fp_t)a is the width of abs(a).
28 const int exponent = (aWidth - 1) - __builtin_clz(a); local
32 const int shift = significandBits - exponent;
35 // Insert the exponent
36 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsisf.c 37 // Exponent of (fp_t)a is the width of abs(a).
38 const int exponent = (aWidth - 1) - __builtin_clz(a); local
42 if (exponent <= significandBits) {
43 const int shift = significandBits - exponent;
46 const int shift = exponent - significandBits;
53 // Insert the exponent
54 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsisf.c 29 // Exponent of (fp_t)a is the width of abs(a).
30 const int exponent = (aWidth - 1) - __builtin_clz(a); local
34 if (exponent <= significandBits) {
35 const int shift = significandBits - exponent;
38 const int shift = exponent - significandBits;
45 // Insert the exponent
46 result += (rep_t)(exponent + exponentBias) << significandBits;
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ryu/
ryu_generic_128.h 41 int32_t exponent; member in struct:floating_decimal_128
50 // sign + mantissa digits + decimal dot + 'E' + exponent sign + exponent digits
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ryu/
ryu_generic_128.h 41 int32_t exponent; member in struct:floating_decimal_128
50 // sign + mantissa digits + decimal dot + 'E' + exponent sign + exponent digits
  /src/external/gpl3/binutils/dist/gas/
flonum.h 27 * MANTISSA * (2 ** EXPONENT). *
40 * Exponent is the place value of the low littlenum. E.g.: *
60 long exponent; /* base LITTLENUM_RADIX */ member in struct:FLONUM_STRUCT
flonum-mult.c 84 long exponent;
103 exponent = a->exponent + b->exponent;
110 exponent -= extra_product_positions; /* Increases exponent. */
158 exponent++;
174 exponent++;
187 product->exponent = exponent;
83 long exponent; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
flonum.h 27 * MANTISSA * (2 ** EXPONENT). *
40 * Exponent is the place value of the low littlenum. E.g.: *
60 long exponent; /* base LITTLENUM_RADIX */ member in struct:FLONUM_STRUCT
flonum-mult.c 84 long exponent;
103 exponent = a->exponent + b->exponent;
110 exponent -= extra_product_positions; /* Increases exponent. */
158 exponent++;
174 exponent++;
187 product->exponent = exponent;
83 long exponent; local
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
frexp.c 61 int exponent; local
81 /* Since the exponent is an 'int', it fits in 64 bits. Therefore the
87 exponent = 0;
90 /* A positive exponent. */
95 x * 2^exponent = argument, x >= 1.0. */
102 exponent += (1 << i);
118 exponent += (1 << i);
124 /* A negative or zero exponent. */
129 x * 2^exponent = argument, x < 1.0. */
136 exponent -= (1 << i)
    [all...]
float.in.h 99 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in struct:gl_long_double_union::__anon18398
isnan.c 102 - exponent = 0x0001..0x7FFF, mantissa bit 63 = 0,
103 - exponent = 0x0000, mantissa bit 63 = 1.
105 - exponent = 0x7FFF, mantissa >= 0x8000000000000001. */
107 unsigned int exponent; local
110 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
113 if (exponent == 0)
115 else if (exponent == EXP_MASK)
121 if (exponent == 0)
123 else if (exponent == EXP_MASK)
154 /* A NaN can be recognized through its exponent. But exclude +Infinity an
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
frexp.c 61 int exponent; local
81 /* Since the exponent is an 'int', it fits in 64 bits. Therefore the
87 exponent = 0;
90 /* A positive exponent. */
95 x * 2^exponent = argument, x >= 1.0. */
102 exponent += (1 << i);
118 exponent += (1 << i);
124 /* A negative or zero exponent. */
129 x * 2^exponent = argument, x < 1.0. */
136 exponent -= (1 << i)
    [all...]
float.in.h 99 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in struct:gl_long_double_union::__anon21139
isnan.c 102 - exponent = 0x0001..0x7FFF, mantissa bit 63 = 0,
103 - exponent = 0x0000, mantissa bit 63 = 1.
105 - exponent = 0x7FFF, mantissa >= 0x8000000000000001. */
107 unsigned int exponent; local
110 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
113 if (exponent == 0)
115 else if (exponent == EXP_MASK)
121 if (exponent == 0)
123 else if (exponent == EXP_MASK)
154 /* A NaN can be recognized through its exponent. But exclude +Infinity an
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/soft-fp/
fixddbitint.c 42 SItype exponent; local
54 exponent = (t >> 2) & 0x3ff;
60 exponent = t & 0x3ff;
84 exponent -= 398;
88 /* Zero (with any exponent). */
93 if (exponent <= -16)
98 else if (exponent < 0)
102 __bid_pow10bitint (limbs, 64, -exponent);
116 exponent = 0;
126 /* Lower estimate for number of bits needed for pow10 (exponent). *
    [all...]
fixsdbitint.c 42 SItype exponent; local
54 exponent = (t >> 2) & 0xff;
60 exponent = t & 0xff;
84 exponent -= 101;
88 /* Zero (with any exponent). */
93 if (exponent <= -7)
98 else if (exponent < 0)
103 __bid_pow10bitint (limbs, 64, -exponent);
117 exponent = 0;
127 /* Lower estimate for number of bits needed for pow10 (exponent). *
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/ppc/
qadd_test.c 266 // Some test cases that cover the whole exponent range:
1831 int exponent = ilogb(r.hi); local
1832 exponent = (exponent < -1022 ? -1022 : exponent);
1833 double ulpError = scalbn(error, 106 - exponent);
qdiv_test.c 754 int exponent = ilogb(r.hi); local
755 exponent = (exponent < -1022 ? -1022 : exponent);
756 double ulpError = scalbn(error, 106 - exponent);

Completed in 48 milliseconds

1 2 3 4 5 6