HomeSort by relevance Sort by last modified time
    Searched full:exponent (Results 326 - 350 of 1644) sorted by null

<<11121314151617181920>>

  /external/fdlibm/
s_frexp.c 18 * and the corresponding binary exponent "exp". That is
s_ilogb.c 15 * return the binary exponent of non-zero x
  /external/v8/src/
strtod.h 36 double Strtod(Vector<const char> buffer, int exponent);
bignum.cc 175 // If this has a greater exponent than other append zero-bigits to this.
180 // aaaaaaaaaaa 0000 (where the 0s represent a's exponent)
302 void Bignum::MultiplyByPowerOfTen(int exponent) {
321 ASSERT(exponent >= 0);
322 if (exponent == 0) return;
325 // We shift by exponent at the end just before returning.
326 int remaining_exponent = exponent;
338 ShiftLeft(exponent);
407 // Don't forget to update the used_digits and the exponent.
644 // The exponent encodes 0-bigits. So if there are more 0-digits in 'a' tha
    [all...]
  /libcore/luni/src/test/java/tests/security/spec/
RSAPrivateKeySpecTest.java 61 * Assertion: returns private exponent
  /system/core/include/mincrypt/
rsa.h 45 int exponent; /* 3 or 65537 */ member in struct:RSAPublicKey
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGParserUtilities.cpp 49 FloatType integer, decimal, frac, exponent; local
53 exponent = 0;
100 // read the exponent part
105 // read the sign of the exponent
113 // There must be an exponent
118 exponent *= static_cast<FloatType>(10);
119 exponent += *ptr - '0';
122 // Make sure exponent is valid.
123 if (!isValidRange(exponent) || exponent > std::numeric_limits<FloatType>::max_exponent
    [all...]
  /external/compiler-rt/lib/
extendsfdf2.c 103 // exponent into the proper position and rebiasing the exponent.
121 // the correct adjusted exponent in the destination type.
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 135 /** \returns an expression of the coefficient-wise power of *this to the given exponent.
143 pow(const Scalar& exponent) const
146 (derived(), internal::scalar_pow_op<Scalar>(exponent));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 164 sign, exponent, flag, significand -- bit masks that give the meaning of the
182 BOOST_STATIC_CONSTANT(uint32_t, exponent = 0x7f800000);
201 BOOST_STATIC_CONSTANT(uint32_t, exponent = 0x7ff00000);
237 static const uint64_t exponent = ((uint64_t)0x7ff00000) << 32; member in struct:boost::math::detail::fp_traits_non_native
261 BOOST_STATIC_CONSTANT(uint32_t, exponent = 0x7ff00000);
297 static const uint64_t exponent = (uint64_t)0x7ff00000 << 32; member in struct:boost::math::detail::fp_traits_non_native
324 BOOST_STATIC_CONSTANT(uint32_t, exponent = 0x7fff0000);
352 // the IEEE extended double precision format with 15 exponent bits (128 bits).
368 BOOST_STATIC_CONSTANT(uint32_t, exponent = 0x7ff00000);
413 BOOST_STATIC_CONSTANT(uint32_t, exponent = 0x7fff0000)
    [all...]
  /bootable/recovery/
verifier.cpp 267 cert->public_key->exponent = 3;
274 cert->public_key->exponent = 65537;
278 cert->public_key->exponent = 3;
282 cert->public_key->exponent = 65537;
323 LOGI("read key e=%d hash=%d\n", key->exponent, cert->hash_len);
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Vec.h 50 /** exponent to elements */
82 /** returns average of vector without exponent */
85 /** returns norm of vector without exponent */
88 /** returns maximum absulute value without exponent */
141 /** computes dot product; returns product as mantisse + exponent */
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
quantize.c 67 /* calculate the final fractional exponent times 16 (was 3*(4*e + gain) + (INT_BITS-1)*16) */
72 /* separate the exponent into a shift, and a multiply */
260 /* get approperiate exponent multiplier for specExp^3/4 combined with scfMod */
263 /* multiply "mantissa" ^4/3 with exponent multiplier */
266 /* get approperiate exponent shifter */
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.h 81 int16 * exp /* (i/o) : exponent (value = frac x 2^exponent) */
91 int16 * exp /* (o) : exponent of result (0..+30) */
97 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
104 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
math_op.c 102 Word16 * exp /* (i/o) : exponent (value = frac x 2^exponent) */
188 | The result is normalized (in Q31) with exponent (0..30). |
200 Word16 * exp /* (o) : exponent of result (0..+30) */
214 *exp = 30 - sft; /* exponent = 0..30 */
  /libcore/luni/src/main/java/java/security/spec/
ECFieldF2m.java 48 * the exponent {@code m} for the number of elements.
69 * the exponent {@code m} for the number of elements.
115 * the exponent {@code m} for the number of elements.
213 * Returns the exponent {@code m} for this finite field, with {@code 2^m} as
216 * @return the exponent {@code m} for this finite field
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
numbers.py 137 def __pow__(self, exponent):
138 """self**exponent; should promote to float or complex when necessary."""
310 def __pow__(self, exponent, modulus=None):
311 """self ** exponent % modulus, but maybe faster.
314 3-argument version of pow(). Raise a TypeError if exponent < 0
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
numbers.py 137 def __pow__(self, exponent):
138 """self**exponent; should promote to float or complex when necessary."""
310 def __pow__(self, exponent, modulus=None):
311 """self ** exponent % modulus, but maybe faster.
314 3-argument version of pow(). Raise a TypeError if exponent < 0
  /device/asus/grouper/keymaster/
keymaster_grouper.cpp 227 ALOGE("public exponent size wasn't what was expected");
492 ALOGW("Could not convert private exponent");
574 ALOGW("Could not convert exponent 1");
582 ALOGW("Could not convert exponent 2");
645 ByteArray exponent(new CK_BYTE[attributes[1].ulValueLen], attributes[1].ulValueLen);
648 attributes[1].pValue = exponent.get();
657 ALOGV("modulus is %d (ret=%d), exponent is %d (ret=%d)",
659 exponent.length(), attributes[1].ulValueLen);
667 exponent.setLength(attributes[1].ulValueLen);
682 rsa->e = BN_bin2bn(reinterpret_cast<const unsigned char*>(exponent.get()), exponent.length()
    [all...]
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 227 ALOGE("public exponent size wasn't what was expected");
492 ALOGW("Could not convert private exponent");
574 ALOGW("Could not convert exponent 1");
582 ALOGW("Could not convert exponent 2");
645 ByteArray exponent(new CK_BYTE[attributes[1].ulValueLen], attributes[1].ulValueLen);
648 attributes[1].pValue = exponent.get();
657 ALOGV("modulus is %d (ret=%d), exponent is %d (ret=%d)",
659 exponent.length(), attributes[1].ulValueLen);
667 exponent.setLength(attributes[1].ulValueLen);
682 rsa->e = BN_bin2bn(reinterpret_cast<const unsigned char*>(exponent.get()), exponent.length()
    [all...]
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 227 ALOGE("public exponent size wasn't what was expected");
492 ALOGW("Could not convert private exponent");
574 ALOGW("Could not convert exponent 1");
582 ALOGW("Could not convert exponent 2");
645 ByteArray exponent(new CK_BYTE[attributes[1].ulValueLen], attributes[1].ulValueLen);
648 attributes[1].pValue = exponent.get();
657 ALOGV("modulus is %d (ret=%d), exponent is %d (ret=%d)",
659 exponent.length(), attributes[1].ulValueLen);
667 exponent.setLength(attributes[1].ulValueLen);
682 rsa->e = BN_bin2bn(reinterpret_cast<const unsigned char*>(exponent.get()), exponent.length()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum.cc 177 // If this has a greater exponent than other append zero-bigits to this.
182 // aaaaaaaaaaa 0000 (where the 0s represent a's exponent)
304 void Bignum::MultiplyByPowerOfTen(int exponent) {
323 ASSERT(exponent >= 0);
324 if (exponent == 0) return;
327 // We shift by exponent at the end just before returning.
328 int remaining_exponent = exponent;
340 ShiftLeft(exponent);
409 // Don't forget to update the used_digits and the exponent.
646 // The exponent encodes 0-bigits. So if there are more 0-digits in 'a' tha
    [all...]
  /external/chromium_org/v8/src/
bignum.cc 176 // If this has a greater exponent than other append zero-bigits to this.
181 // aaaaaaaaaaa 0000 (where the 0s represent a's exponent)
303 void Bignum::MultiplyByPowerOfTen(int exponent) {
322 ASSERT(exponent >= 0);
323 if (exponent == 0) return;
326 // We shift by exponent at the end just before returning.
327 int remaining_exponent = exponent;
339 ShiftLeft(exponent);
408 // Don't forget to update the used_digits and the exponent.
645 // The exponent encodes 0-bigits. So if there are more 0-digits in 'a' tha
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 90 /// signed exponent, and the significand as an array of integer parts. After
91 /// normalization of a number of precision P the exponent is within the range of
94 /// significant bit is shifted right so that the exponent is maintained at the
97 /// is significant; the exponent and significand of such numbers is not stored,
99 /// for zero exponent, all 1 bits for infinity exponent. For NaNs the sign and
101 /// in non-conversion operations. The exponent is implicitly all 1 bits.
118 /// extended exponent range) (hard).
125 /// A signed type to represent a floating point numbers unbiased exponent.
560 /// The signed unbiased exponent of the value
561 ExponentType exponent; member in class:llvm::APFloat
    [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp 328 // 2d. Test values which cause our exponent to go to min exponent. This
329 // is to ensure that guards in the code to check for min exponent
    [all...]

Completed in 1285 milliseconds

<<11121314151617181920>>