HomeSort by relevance Sort by last modified time
    Searched refs:kDenormalExponent (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double.h 102 if (IsDenormal()) return kDenormalExponent;
167 if (significand_is_zero && v.e() != kDenormalExponent) {
193 if (order >= (kDenormalExponent + kSignificandSize)) {
196 if (order <= kDenormalExponent) return 0;
197 return order - kDenormalExponent;
210 static const int kDenormalExponent = -kExponentBias + 1;
227 if (exponent < kDenormalExponent) {
230 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
235 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
  /external/chromium_org/v8/src/
double.h 102 if (IsDenormal()) return kDenormalExponent;
161 if (significand_is_zero && v.e() != kDenormalExponent) {
187 if (order >= (kDenormalExponent + kSignificandSize)) {
190 if (order <= kDenormalExponent) return 0;
191 return order - kDenormalExponent;
196 static const int kDenormalExponent = -kExponentBias + 1;
212 if (exponent < kDenormalExponent) {
215 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
220 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
  /external/v8/src/
double.h 102 if (IsDenormal()) return kDenormalExponent;
167 if (significand_is_zero && v.e() != kDenormalExponent) {
193 if (order >= (kDenormalExponent + kSignificandSize)) {
196 if (order <= kDenormalExponent) return 0;
197 return order - kDenormalExponent;
202 static const int kDenormalExponent = -kExponentBias + 1;
218 if (exponent < kDenormalExponent) {
221 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
226 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {

Completed in 819 milliseconds