Searched refs:fSmallestInclusive (Results 1 – 2 of 2) sorted by relevance
17 if (fSmallestInclusive > rhs.fSmallestInclusive) { in expandToContain()18 fSmallestInclusive = rhs.fSmallestInclusive; in expandToContain()26 if (fSmallestInclusive < rhs.fSmallestInclusive) { in shrinkToFitWithin()27 fSmallestInclusive = rhs.fSmallestInclusive; in shrinkToFitWithin()39 fSmallestInclusive = count < 0 ? INT32_MIN : -count; in setFracDigitCount()45 } else if (fSmallestInclusive > digitExponent) { in expandToContainDigit()46 fSmallestInclusive = digitExponent; in expandToContainDigit()51 return (x < fLargestExclusive && x >= fSmallestInclusive); in contains()
38 : fLargestExclusive(INT32_MAX), fSmallestInclusive(INT32_MIN) { } in DigitInterval()46 fSmallestInclusive = INT32_MIN; in clear()59 (fSmallestInclusive == rhs.fSmallestInclusive)); in equals()98 fSmallestInclusive = smallest < 0 ? smallest : 0; in setLeastSignificantInclusive()131 return fSmallestInclusive == INT32_MIN ? INT32_MAX : -fSmallestInclusive; in getFracDigitCount()141 return fLargestExclusive - fSmallestInclusive; in length()150 return fSmallestInclusive; in getLeastSignificantInclusive()154 int32_t fSmallestInclusive; variable