HomeSort by relevance Sort by last modified time
    Searched defs:kExponentBias (Results 1 - 6 of 6) sorted by null

  /frameworks/native/opengl/libagl/
fp.h 91 const int32_t kExponentBias = 127L<<23;
93 u.i = e + kExponentBias;
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double.h 107 return biased_e - kExponentBias;
209 static const int kExponentBias = 0x3FF + kPhysicalSignificandSize;
210 static const int kDenormalExponent = -kExponentBias + 1;
211 static const int kMaxExponent = 0x7FF - kExponentBias;
238 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);
  /external/chromium_org/v8/src/
double.h 107 return biased_e - kExponentBias;
195 static const int kExponentBias = 0x3FF + kPhysicalSignificandSize;
196 static const int kDenormalExponent = -kExponentBias + 1;
197 static const int kMaxExponent = 0x7FF - kExponentBias;
223 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);
objects.h     [all...]
  /external/v8/src/
double.h 107 return biased_e - kExponentBias;
201 static const int kExponentBias = 0x3FF + kPhysicalSignificandSize;
202 static const int kDenormalExponent = -kExponentBias + 1;
203 static const int kMaxExponent = 0x7FF - kExponentBias;
229 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);
objects.h     [all...]

Completed in 83 milliseconds