HomeSort by relevance Sort by last modified time
    Searched refs:exponent (Results 26 - 50 of 271) sorted by null

12 3 4 5 6 7 8 91011

  /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...]
  /external/ceres-solver/internal/ceres/
polynomial_solver.cc 71 // Decompose row_norm/col_norm into mantissa * 2^exponent,
73 // of frexp), as only the exponent is needed.
74 int exponent = 0; local
75 std::frexp(row_norm / col_norm, &exponent);
76 exponent /= 2;
78 if (exponent != 0) {
79 const double scaled_col_norm = std::ldexp(col_norm, exponent);
80 const double scaled_row_norm = std::ldexp(row_norm, -exponent);
86 companion_matrix_offdiagonal.row(i) *= std::ldexp(1.0, -exponent);
87 companion_matrix_offdiagonal.col(i) *= std::ldexp(1.0, exponent);
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
pow2.cpp 82 exponent = Integer part whose valid range is: 0 <= value <= 30 (Word16)
103 This function computes L_x = pow(2.0, exponent.fraction)
110 4- L_x = L_x >> (30-exponent) (with rounding)
126 Word16 exponent, // (i) : Integer part. (range: 0<=val<=30)
143 exp = sub (30, exponent);
177 Word16 exponent, /* (i) : Integer part. (range: 0<=val<=30) */
198 exp = sub(30, exponent, pOverflow);
  /external/v8/src/
fixed-dtoa.cc 225 // point at bit (-exponent).
227 // -128 <= exponent <= 0.
228 // 0 <= fractionals * 2^exponent < 1
235 static void FillFractionals(uint64_t fractionals, int exponent,
238 ASSERT(-128 <= exponent && exponent <= 0);
240 // (-exponent). Inside the function the non-converted remainder of fractionals
242 if (-exponent <= 64) {
245 int point = -exponent;
270 ASSERT(64 < -exponent && -exponent <= 128)
319 int exponent = Double(v).Exponent(); local
370 significand <<= exponent; local
    [all...]
double.h 62 return DiyFp(Significand(), Exponent());
69 int e = Exponent();
101 int Exponent() const {
154 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
159 // exponent as m_plus.
173 // Note: denormals have the same exponent as the smallest normals.
210 int exponent = diy_fp.e(); local
213 exponent++;
215 if (exponent >= kMaxExponent) {
218 if (exponent < kDenormalExponent)
    [all...]
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...]
conversions.cc 113 int exponent = decimal_point - 1; local
114 if (exponent < 0) exponent = -exponent;
115 builder.AddDecimalInteger(exponent);
215 int exponent,
219 if (exponent < 0) {
221 exponent = -exponent;
225 // letter 'e', a minus or a plus depending on the exponent, and
284 int exponent = decimal_point - 1; local
317 int exponent = decimal_point - 1; local
    [all...]
bignum-dtoa.cc 42 static int NormalizedExponent(uint64_t significand, int exponent) {
46 exponent = exponent - 1;
48 return exponent;
54 static int EstimatePower(int exponent);
98 int exponent = Double(v).Exponent(); local
99 int normalized_exponent = NormalizedExponent(significand, exponent);
269 // exponent (decimal_point), when rounding upwards.
357 // v = f * 2^exponent and 2^52 <= f < 2^53
454 int exponent = Double(v).Exponent(); local
506 int exponent = Double(v).Exponent(); local
    [all...]
  /libcore/luni/src/main/java/java/lang/
HexStringParser.java 69 private long exponent; field in class:HexStringParser
119 exponent <<= MANTISSA_WIDTH;
120 return sign | exponent | mantissa;
131 * Parses the exponent field.
141 exponent = expSign * Long.parseLong(exponentStr);
144 exponent = expSign * Long.MAX_VALUE;
165 if (exponent >= MAX_EXPONENT) {
170 if (exponent <= MIN_EXPONENT) {
182 if (exponent >= 1) {
191 exponent = MAX_EXPONENT
    [all...]
  /system/core/include/mincrypt/
rsa.h 45 int exponent; /* 3 or 65537 */ member in struct:RSAPublicKey
  /libcore/luni/src/main/java/java/math/
Conversion.java 30 * Holds the maximal exponent for each radix, so that radix<sup>digitFitInInt[radix]</sup>
239 int exponent = resLengthInChars - currentChar - scale - 1; local
247 if ((scale > 0) && (exponent >= -6)) {
248 if (exponent >= 0) {
250 int insertPoint = currentChar + exponent;
262 for (int j = 2; j < -exponent + 1; j++) {
289 if (exponent > 0) {
292 result1.append(Integer.toString(exponent));
342 long exponent = (long)resLengthInChars - (long)currentChar - scale - 1L;
349 if (scale > 0 && exponent >= -6)
431 long exponent = bitLen - 1; local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
sigcontext.h 26 unsigned short exponent; member in struct:_fpreg
31 unsigned short exponent; member in struct:_fpxreg
  /development/ndk/platforms/android-9/arch-x86/include/asm/
sigcontext.h 26 unsigned short exponent; member in struct:_fpreg
31 unsigned short exponent; member in struct:_fpxreg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
sigcontext32.h 10 unsigned short exponent; member in struct:_fpreg
15 unsigned short exponent; member in struct:_fpxreg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
sigcontext32.h 10 unsigned short exponent; member in struct:_fpreg
15 unsigned short exponent; member in struct:_fpxreg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
sigcontext32.h 10 unsigned short exponent; member in struct:_fpreg
15 unsigned short exponent; member in struct:_fpxreg
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
sigcontext.h 26 unsigned short exponent; member in struct:_fpreg
31 unsigned short exponent; member in struct:_fpxreg
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 26 unsigned short exponent; member in struct:_fpreg
31 unsigned short exponent; member in struct:_fpxreg
  /system/core/libmincrypt/
rsa.c 44 switch (key->exponent) {
  /external/webkit/Source/WebCore/platform/graphics/filters/arm/
FELightingNEON.cpp 170 #define POWF_SQR(value, exponent, current, remaining) \
171 "tst " exponent ", #" ASSTRING(current) NL \
173 "tst " exponent ", #" ASSTRING(remaining) NL \
176 #define POWF_SQRT(value, exponent, current, remaining) \
177 "tst " exponent ", #" ASSTRING(remaining) NL \
179 "tst " exponent ", #" ASSTRING(current) NL \
183 #define POWF(value, exponent) \
184 "tst " exponent ", #0xfc0" NL \
186 "tst " exponent ", #0x03f" NL \
190 POWF_SQR(value, exponent, 0x040, 0xf80)
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLParserIdioms.cpp 124 int exponent = 0; local
151 exponent = 19999; /* safe for 16 bit ints */
153 exponent = static_cast<int>(exponent32);
155 exponent = -exponent;
157 exponent = 0;
161 int intDecimalPlaces = baseDecimalPlaces - exponent;
  /external/webkit/Source/WebCore/svg/
SVGComponentTransferFunctionElement.h 52 DECLARE_ANIMATED_NUMBER(Exponent, exponent)
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 566 * @param exponent exponent value for this characteristic
571 public boolean setValue(int mantissa, int exponent, int formatType, int offset) {
579 exponent = intToSignedBits(exponent, 4);
582 mValue[offset] += (byte)((exponent & 0x0F) << 4);
587 exponent = intToSignedBits(exponent, 8);
591 mValue[offset] += (byte)(exponent & 0xFF);
648 int exponent = unsignedToSigned(unsignedByteToInt(b1) >> 4, 4) local
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm/
user.h 23 unsigned int exponent:14; member in struct:user_fp::fp_reg

Completed in 587 milliseconds

12 3 4 5 6 7 8 91011