Lines Matching refs:maxInt
88 int32_t maxInt = properties.maximumIntegerDigits;
119 minFrac = (minFrac < 0 || (minFrac == 0 && maxInt == 0)) ? 1 : minFrac;
122 maxInt = maxInt < 0 ? -1 : maxInt > kMaxIntFracSig ? -1 : maxInt;
128 maxInt = maxInt < 0 ? -1 : maxInt < minInt ? minInt : maxInt > kMaxIntFracSig ? -1 : maxInt;
161 static_cast<digits_t>(maxInt),
199 if (maxInt > 8) {
201 // If maxInt is greater than 8, it is set to minInt, even if minInt is greater than 8.
202 maxInt = minInt;
203 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt);
204 } else if (maxInt > minInt && minInt > 1) {
205 // Bug #13289: if maxInt > minInt > 1, then minInt should be 1.
207 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt);
209 int engineering = maxInt < 0 ? -1 : maxInt;
276 exportedProperties->maximumIntegerDigits = maxInt == -1 ? INT32_MAX : maxInt;