Searched defs:exponent (Results 1 - 25 of 127) sorted by relevance

123456

/external/aac/libAACdec/src/
H A Dblock.h188 * \brief find a common exponent (shift factor) for all sfb in each Spectral window, and store them into
230 * \return the exponent of the result (mantissa) stored into *pValue.
238 UINT exponent; local
242 exponent = DFRACT_BITS - freeBits ;
243 FDK_ASSERT (exponent < 14);
258 *pValue = fMultDiv2 (invQVal, MantissaTable [lsb][exponent]) ;
261 return ExponentTable [lsb][exponent] + 1;
/external/compiler-rt/lib/builtins/
H A Dfloatsidf.c40 const int exponent = (aWidth - 1) - __builtin_clz(a); local
46 const int shift = significandBits - exponent;
49 // Insert the exponent
50 result += (rep_t)(exponent + exponentBias) << significandBits;
H A Dfloatsisf.c40 const int exponent = (aWidth - 1) - __builtin_clz(a); local
44 if (exponent <= significandBits) {
45 const int shift = significandBits - exponent;
48 const int shift = exponent - significandBits;
55 // Insert the exponent
56 result += (rep_t)(exponent + exponentBias) << significandBits;
H A Dfloatunsidf.c32 const int exponent = (aWidth - 1) - __builtin_clz(a); local
36 const int shift = significandBits - exponent;
39 // Insert the exponent
40 result += (rep_t)(exponent + exponentBias) << significandBits;
H A Dfloatunsisf.c32 const int exponent = (aWidth - 1) - __builtin_clz(a); local
36 if (exponent <= significandBits) {
37 const int shift = significandBits - exponent;
40 const int shift = exponent - significandBits;
47 // Insert the exponent
48 result += (rep_t)(exponent + exponentBias) << significandBits;
H A Dfloatunsitf.c28 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;
H A Dfloatsitf.c37 const int exponent = (aWidth - 1) - __builtin_clz(a); local
43 const int shift = significandBits - exponent;
46 // Insert the exponent
47 result += (rep_t)(exponent + exponentBias) << significandBits;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DRSAKeyParameters.java9 private BigInteger exponent; field in class:RSAKeyParameters
14 BigInteger exponent)
19 this.exponent = exponent;
29 return exponent;
11 RSAKeyParameters( boolean isPrivate, BigInteger modulus, BigInteger exponent) argument
/external/bison/lib/
H A Dfrexp.c61 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
[all...]
H A Dfloat.in.h98 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in struct:gl_long_double_union::__anon318
H A Disnan.c91 - exponent = 0x0001..0x7FFF, mantissa bit 63 = 0,
92 - exponent = 0x0000, mantissa bit 63 = 1.
94 - exponent = 0x7FFF, mantissa >= 0x8000000000000001. */
96 unsigned int exponent; local
99 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
102 if (exponent == 0)
104 else if (exponent == EXP_MASK)
110 if (exponent == 0)
112 else if (exponent == EXP_MASK)
143 /* A NaN can be recognized through its exponent
[all...]
H A Dprintf-frexp.c69 int exponent; local
76 x = FREXP (x, &exponent);
79 exponent -= 1;
81 if (exponent < MIN_EXP - 1)
83 x = LDEXP (x, exponent - (MIN_EXP - 1));
84 exponent = MIN_EXP - 1;
88 /* Since the exponent is an 'int', it fits in 64 bits. Therefore the
94 exponent = 0;
97 /* A nonnegative exponent. */
103 x * 2^exponent
[all...]
/external/crcalc/src/com/hp/creals/
H A DStringFloatRep.java45 exponent = e;
57 * The radix of the representation. Also the base of the exponent field.
61 * The mantissa is scaled by radix**exponent.
63 public int exponent; field in class:StringFloatRep
66 * Produce a textual representation including the sign and exponent.
70 (sign < 0? "-" : "") + mantissa + "E" + Integer.toString(exponent)
/external/eigen/Eigen/src/Core/
H A DGlobalFunctions.h55 pow(const Eigen::ArrayBase<Derived>& x, const typename Derived::Scalar& exponent) { argument
56 return x.derived().pow(exponent);
/external/guava/guava-tests/benchmark/com/google/common/math/
H A DIntMathBenchmark.java36 private static int[] exponent = new int[ARRAY_SIZE]; field in class:IntMathBenchmark
46 exponent[i] = randomExponent();
59 tmp += IntMath.pow(positive[j], exponent[j]);
/external/nanopb-c/examples/using_double_on_avr/
H A Ddouble_conversion.c21 int16_t exponent; local
26 exponent = ((in.i >> 23) & 0xFF) - 127;
29 if (exponent == 128)
32 exponent = 1024;
34 else if (exponent == -127)
39 exponent = -1023;
48 exponent--;
56 mantissa |= (uint64_t)(exponent + 1023) << 52;
65 int16_t exponent; local
71 exponent
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
H A DMicrosphereInterpolator.java42 * Default exponent used the weights calculation.
69 * @param brightnessExponent exponent used in the power law that computes the
95 * Set the brightness exponent.
96 * @param exponent Exponent for computing the distance dimming
98 * @throws NotPositiveException if {@code exponent < 0}.
100 public void setBrightnessExponent(final int exponent) { argument
101 if (exponent < 0) {
102 throw new NotPositiveException(exponent);
104 brightnessExponent = exponent;
/external/v8/src/ia32/
H A Dinterface-descriptors-ia32.cc48 const Register MathPowTaggedDescriptor::exponent() { return eax; } function in class:v8::internal::MathPowTaggedDescriptor
51 const Register MathPowIntegerDescriptor::exponent() { function in class:v8::internal::MathPowIntegerDescriptor
52 return MathPowTaggedDescriptor::exponent();
/external/v8/src/mips/
H A Dinterface-descriptors-mips.cc46 const Register MathPowTaggedDescriptor::exponent() { return a2; } function in class:v8::internal::MathPowTaggedDescriptor
49 const Register MathPowIntegerDescriptor::exponent() { function in class:v8::internal::MathPowIntegerDescriptor
50 return MathPowTaggedDescriptor::exponent();
/external/v8/src/mips64/
H A Dinterface-descriptors-mips64.cc46 const Register MathPowTaggedDescriptor::exponent() { return a2; } function in class:v8::internal::MathPowTaggedDescriptor
49 const Register MathPowIntegerDescriptor::exponent() { function in class:v8::internal::MathPowIntegerDescriptor
50 return MathPowTaggedDescriptor::exponent();
/external/v8/src/x64/
H A Dinterface-descriptors-x64.cc48 const Register MathPowTaggedDescriptor::exponent() { return rdx; } function in class:v8::internal::MathPowTaggedDescriptor
51 const Register MathPowIntegerDescriptor::exponent() { function in class:v8::internal::MathPowIntegerDescriptor
52 return MathPowTaggedDescriptor::exponent();
/external/v8/src/x87/
H A Dinterface-descriptors-x87.cc48 const Register MathPowTaggedDescriptor::exponent() { return eax; } function in class:v8::internal::MathPowTaggedDescriptor
51 const Register MathPowIntegerDescriptor::exponent() { function in class:v8::internal::MathPowIntegerDescriptor
52 return MathPowTaggedDescriptor::exponent();
/external/valgrind/VEX/priv/
H A Dhost_generic_maddf.c86 unsigned int exponent:11; member in struct:vg_ieee754_double::__anon15301
92 unsigned int exponent:11;
121 if ((u.ieee.mantissa1 & 1) == 0 && u.ieee.exponent != 0x7ff)
144 if (UNLIKELY (u.ieee.exponent + v.ieee.exponent
146 || UNLIKELY (u.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
147 || UNLIKELY (v.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
148 || UNLIKELY (w.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
149 || UNLIKELY (u.ieee.exponent + v.ieee.exponent
[all...]
/external/boringssl/src/crypto/bn/
H A Drsaz_exp.c78 const BN_ULONG base_norm[16], const BN_ULONG exponent[16],
228 p_str = (unsigned char*)exponent;
274 const BN_ULONG base[8], const BN_ULONG exponent[8],
281 unsigned char *p_str = (unsigned char*)exponent;
77 RSAZ_1024_mod_exp_avx2(BN_ULONG result_norm[16], const BN_ULONG base_norm[16], const BN_ULONG exponent[16], const BN_ULONG m_norm[16], const BN_ULONG RR[16], BN_ULONG k0) argument
273 RSAZ_512_mod_exp(BN_ULONG result[8], const BN_ULONG base[8], const BN_ULONG exponent[8], const BN_ULONG m[8], BN_ULONG k0, const BN_ULONG RR[8]) argument
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dqadd_test.c266 // 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);

Completed in 542 milliseconds

123456