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

12345678

/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 Dfixdfsi.c26 // Break a into sign, exponent, significand
30 const int exponent = (aAbs >> significandBits) - exponentBias; local
33 // If 0 < exponent < significandBits, right shift to get the result.
34 if ((unsigned int)exponent < significandBits) {
35 return sign * (significand >> (significandBits - exponent));
38 // If exponent is negative, the result is zero.
39 else if (exponent < 0) {
43 // If significandBits < exponent, left shift to get the result. This shift
48 return sign * (significand << (exponent - significandBits));
H A Dfixsfsi.c23 // Break a into sign, exponent, significand
27 const int exponent = (aAbs >> significandBits) - exponentBias; local
30 // If 0 < exponent < significandBits, right shift to get the result.
31 if ((unsigned int)exponent < significandBits) {
32 return sign * (significand >> (significandBits - exponent));
35 // If exponent is negative, the result is zero.
36 else if (exponent < 0) {
40 // If significandBits < exponent, left shift to get the result. This shift
45 return sign * (significand << (exponent - significandBits));
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;
/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/deqp/framework/delibs/debase/
H A DdeMath.c106 double deFractExp (double x, int* exponent) argument
110 *exponent = 0;
117 *exponent = tmpExp - 1;
123 float deFloatFractExp (float x, int* exponent) argument
125 return (float)deFractExp(x, 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/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/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGComponentTransferFunctionElement.h43 SVGAnimatedNumber* exponent() { return m_exponent.get(); } function in class:blink::SVGComponentTransferFunctionElement
/external/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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/main/VEX/priv/
H A Dhost_generic_maddf.c86 unsigned int exponent:11; member in struct:vg_ieee754_double::__anon31905
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/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComponentTransfer.h47 , exponent(0)
57 float exponent; member in struct:blink::ComponentTransferFunction
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfast-dtoa.cc40 // The minimal and maximal target exponent define the range of w's binary
41 // exponent, where 'w' is the result of multiplying the input by a cached power
245 int* exponent) {
254 *exponent = 9;
262 *exponent = 8;
270 *exponent = 7;
279 *exponent = 6;
287 *exponent = 5;
295 *exponent = 4;
304 *exponent
242 BiggestPowerTen(uint32_t number, int number_bits, uint32_t* power, int* exponent) argument
[all...]
/external/chromium_org/third_party/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

Completed in 2041 milliseconds

12345678