HomeSort by relevance Sort by last modified time
    Searched defs:exponent (Results 1 - 25 of 237) sorted by null

1 2 3 4 5 6 7 8 910

  /external/aac/libAACdec/src/
block.h 188 * \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/chromium_org/third_party/WebKit/Source/modules/crypto/
RsaKeyGenParams.cpp 46 const WebKit::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent(); local
47 m_publicExponent = Uint8Array::create(exponent.data(), exponent.size());
  /external/compiler-rt/lib/
fixdfsi.c 25 // Break a into sign, exponent, significand
29 const int exponent = (aAbs >> significandBits) - exponentBias; local
32 // If 0 < exponent < significandBits, right shift to get the result.
33 if ((unsigned int)exponent < significandBits) {
34 return sign * (significand >> (significandBits - exponent));
37 // If exponent is negative, the result is zero.
38 else if (exponent < 0) {
42 // If significandBits < exponent, left shift to get the result. This shift
47 return sign * (significand << (exponent - significandBits));
fixsfsi.c 23 // 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));
floatsidf.c 38 // Exponent of (fp_t)a is the width of abs(a).
39 const int exponent = (aWidth - 1) - __builtin_clz(a); local
45 const int shift = significandBits - exponent;
48 // Insert the exponent
49 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsisf.c 38 // Exponent of (fp_t)a is the width of abs(a).
39 const int exponent = (aWidth - 1) - __builtin_clz(a); local
43 if (exponent <= significandBits) {
44 const int shift = significandBits - exponent;
47 const int shift = exponent - significandBits;
54 // Insert the exponent
55 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsidf.c 30 // Exponent of (fp_t)a is the width of abs(a).
31 const int exponent = (aWidth - 1) - __builtin_clz(a); local
35 const int shift = significandBits - exponent;
38 // Insert the exponent
39 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsisf.c 30 // Exponent of (fp_t)a is the width of abs(a).
31 const int exponent = (aWidth - 1) - __builtin_clz(a); local
35 if (exponent <= significandBits) {
36 const int shift = significandBits - exponent;
39 const int shift = exponent - significandBits;
46 // Insert the exponent
47 result += (rep_t)(exponent + exponentBias) << significandBits;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RSAKeyParameters.java 9 private BigInteger exponent; field in class:RSAKeyParameters
14 BigInteger exponent)
19 this.exponent = exponent;
29 return exponent;
  /external/chromium_org/third_party/WebKit/Source/wtf/
DecimalNumber.cpp 37 // if the exponent is negative the number decimal representation is of the form:
90 int exponent = (m_exponent >= 0) ? m_exponent : -m_exponent; local
92 // Add the exponent
93 if (exponent >= 100)
95 if (exponent >= 10)
110 // if the exponent is negative the number decimal representation is of the form:
180 int exponent; local
183 exponent = m_exponent;
186 exponent = -m_exponent;
189 // Add the exponent
    [all...]
DecimalNumber.h 49 // Zero should always have exponent 0.
67 // Zero should always have exponent 0.
82 // Zero should always have exponent 0.
93 int exponent() const { return m_exponent; } function in class:WTF::DecimalNumber
  /system/core/include/mincrypt/
rsa.h 45 int exponent; /* 3 or 65537 */ member in struct:RSAPublicKey
  /external/bison/lib/
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...]
isnan.c 91 - 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. But exclude +Infinity an
    [all...]
printf-frexp.c 69 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 = argument, x >= 1.0. *
    [all...]
float.in.h 98 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in struct:gl_long_double_union::__anon2721
  /external/chromium_org/v8/test/cctest/
test-code-stubs.cc 48 int32_t exponent = (((exponent_bits & shifted_mask) >> local
51 uint32_t unsigned_exponent = static_cast<uint32_t>(exponent);
56 if ((exponent - Double::kPhysicalSignificandSize) < 32) {
58 (exponent - Double::kPhysicalSignificandSize);
63 big_result = big_result >> (Double::kPhysicalSignificandSize - exponent);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
sampler.h 173 const int32_t exponent = ((x_high >> 20) & 0x7FF) - 1023; local
174 return exponent + log_table_[y];
  /external/chromium_org/third_party/tcmalloc/vendor/src/
sampler.h 173 const int32_t exponent = ((x_high >> 20) & 0x7FF) - 1023; local
174 return exponent + log_table_[y];
  /external/v8/src/
conversions-inl.h 94 int exponent = d.Exponent();
95 if (exponent < 0) {
96 if (exponent <= -Double::kSignificandSize) return 0;
97 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
99 if (exponent > 31) return 0;
100 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
149 int exponent = 0; local
183 exponent = overflow_bits_count;
190 exponent += radix_log_2
    [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
G711Codec.cpp 60 int exponent = gExponents[sample >> 8]; local
61 int mantissa = (sample >> (exponent + 3)) & 0x0F;
62 ulaws[i] = ~(sign | (exponent << 4) | mantissa);
75 int exponent = (ulaw >> 4) & 0x07; local
77 int sample = (((mantissa << 3) + 132) << exponent) - 132;
110 int exponent = gExponents[sample >> 8]; local
111 int mantissa = (sample >> (exponent == 0 ? 4 : exponent + 3)) & 0x0F;
112 alaws[i] = (sign | (exponent << 4) | mantissa) ^ 0xD5;
125 int exponent = (alaw >> 4) & 0x07 local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ieee754.h 37 unsigned int exponent:8; member in struct:ieee754_float::__anon39218
42 unsigned int exponent:8; member in struct:ieee754_float::__anon39218
52 unsigned int exponent:8; member in struct:ieee754_float::__anon39219
59 unsigned int exponent:8; member in struct:ieee754_float::__anon39219
65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */
77 unsigned int exponent:11; member in struct:ieee754_double::__anon39220
85 unsigned int exponent:11; member in struct:ieee754_double::__anon39220
92 unsigned int exponent:11; member in struct:ieee754_double::__anon39220
103 unsigned int exponent:11; member in struct:ieee754_double::__anon39221
112 unsigned int exponent:11
139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39222
146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39222
154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39222
166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39223
175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39223
187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39223
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
ieee754.h 37 unsigned int exponent:8; member in struct:ieee754_float::__anon40808
42 unsigned int exponent:8; member in struct:ieee754_float::__anon40808
52 unsigned int exponent:8; member in struct:ieee754_float::__anon40809
59 unsigned int exponent:8; member in struct:ieee754_float::__anon40809
65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */
77 unsigned int exponent:11; member in struct:ieee754_double::__anon40810
85 unsigned int exponent:11; member in struct:ieee754_double::__anon40810
92 unsigned int exponent:11; member in struct:ieee754_double::__anon40810
103 unsigned int exponent:11; member in struct:ieee754_double::__anon40811
112 unsigned int exponent:11
139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40812
146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40812
154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40812
166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40813
175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40813
187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40813
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
ieee754.h 37 unsigned int exponent:8; member in struct:ieee754_float::__anon42323
42 unsigned int exponent:8; member in struct:ieee754_float::__anon42323
52 unsigned int exponent:8; member in struct:ieee754_float::__anon42324
59 unsigned int exponent:8; member in struct:ieee754_float::__anon42324
65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */
77 unsigned int exponent:11; member in struct:ieee754_double::__anon42325
85 unsigned int exponent:11; member in struct:ieee754_double::__anon42325
92 unsigned int exponent:11; member in struct:ieee754_double::__anon42325
103 unsigned int exponent:11; member in struct:ieee754_double::__anon42326
112 unsigned int exponent:11
139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon42327
146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon42327
154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon42327
166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon42328
175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon42328
187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon42328
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEComponentTransfer.h 48 , exponent(0)
58 float exponent; member in struct:WebCore::ComponentTransferFunction

Completed in 562 milliseconds

1 2 3 4 5 6 7 8 910