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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
double.h 62 return DiyFp(Significand(), Exponent());
69 int e = Exponent();
101 int Exponent() const {
148 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
153 // exponent as m_plus.
167 // Note: denormals have the same exponent as the smallest normals.
204 int exponent = diy_fp.e(); local
207 exponent++;
209 if (exponent >= kMaxExponent) {
212 if (exponent < kDenormalExponent)
    [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...]
  /external/v8/src/
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...]
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...]
  /external/chromium_org/net/quic/
quic_data_writer.cc 62 // Fast path: either the value is denormalized, or has exponent zero.
70 // corresponds to exponent 1-30. In the output, mantissa is from 0 to 10,
71 // hidden bit is 11 and exponent is 11 to 15. Shift the highest bit to 11
73 uint16 exponent = 0; local
79 exponent += offset;
84 DCHECK_GE(exponent, 1);
85 DCHECK_LE(exponent, kUFloat16MaxExponent);
90 // exponent. Equivalently, we just add it to the exponent.
92 result = value + (exponent << kUFloat16MantissaBits)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.cpp 242 Decimal::EncodedData::EncodedData(Sign sign, int exponent, uint64_t coefficient)
246 if (exponent >= ExponentMin && exponent <= ExponentMax) {
249 ++exponent;
253 if (exponent > ExponentMax) {
260 if (exponent < ExponentMin) {
268 m_exponent = static_cast<int16_t>(exponent);
284 Decimal::Decimal(Sign sign, int exponent, uint64_t coefficient)
285 : m_data(sign, exponent, coefficient)
370 return Decimal(Positive, alignedOperands.exponent, 0)
    [all...]
Decimal.h 64 EncodedData(Sign, int exponent, uint64_t coefficient);
71 int exponent() const { return m_exponent; } function in class:WebCore::Decimal::EncodedData
98 Decimal(Sign, int exponent, uint64_t coefficient);
121 int exponent() const function in class:WebCore::Decimal
124 return m_data.exponent();
147 // number ::= sign? digit+ ('.' digit*) (exponent-marker sign? digit+)?
148 // | sign? '.' digit+ (exponent-marker sign? digit+)?
150 // exponent-marker ::= 'e' | 'E'
166 int exponent; member in struct:WebCore::Decimal::AlignedOperands
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.cc 41 static int NormalizedExponent(uint64_t significand, int exponent) {
45 exponent = exponent - 1;
47 return exponent;
53 static int EstimatePower(int exponent);
97 int exponent = Double(v).Exponent(); local
98 int normalized_exponent = NormalizedExponent(significand, exponent);
268 // exponent (decimal_point), when rounding upwards.
356 // v = f * 2^exponent and 2^52 <= f < 2^53
453 int exponent = Double(v).Exponent(); local
505 int exponent = Double(v).Exponent(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
RsaKeyGenParams.cpp 46 const blink::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent(); local
47 m_publicExponent = Uint8Array::create(exponent.data(), exponent.size());
  /libcore/luni/src/main/java/javax/crypto/spec/
DHGenParameterSpec.java 38 * the size of the <i>random exponent</i> in bits.
55 * Returns the size of the <i>random exponent</i> in bits.
57 * @return the size of the random exponent in bits.
DHParameterSpec.java 50 * <i>random exponent</i>.
57 * the size of the random exponent (in bits).
84 * Returns the size (in bits) of the <i>random exponent</i>.
86 * @return the size (in bits) of the random exponent.
  /libcore/luni/src/test/java/tests/security/interfaces/
RSAPrivateCrtKeyTest.java 47 assertEquals("invalid prime exponent P",
56 assertEquals("invalid prime exponent Q",
83 assertEquals("invalid public exponent",