Lines Matching defs:minInt
89 int32_t minInt = properties.minimumIntegerDigits;
118 if (minInt == 0 && maxFrac != 0) {
121 minInt = 0;
127 minInt = minInt <= 0 ? 1 : minInt > kMaxIntFracSig ? 1 : minInt;
128 maxInt = maxInt < 0 ? -1 : maxInt < minInt ? minInt : maxInt > kMaxIntFracSig ? -1 : maxInt;
160 static_cast<digits_t>(minInt),
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.
206 minInt = 1;
207 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt);
214 (engineering == minInt),
275 exportedProperties->minimumIntegerDigits = minInt;