Lines Matching defs:precision
1016 // For o conversion, it increases the precision, if and only if necessary,
1018 // (if the value and precision are both 0, a single 0 is printed)
1072 // See man 3 printf for default precision value based on the specifier.
7180 // First check if the field width, precision, and conversion specifier
7187 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
7193 // FIXME: Technically specifying a precision or field width here
7309 // Check for invalid use of precision
7311 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
7989 // FIXME: Technically specifying a precision or field width here
10821 // FIXME: Force the precision of the source value down so we don't print
10827 unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics());
10828 precision = (precision * 59 + 195) / 196;
10829 Value.toString(PrettySourceValue, precision);
10900 /// floating-point precision.
10928 // If both source and target are floating points, warn about losing precision.
11395 // Determine the number of precision bits in the source integer type.
11403 // Determine the number of precision bits in the
11436 // Otherwise, the implicit conversion may lose precision.
11680 // precision loss, because C++11 narrowing already handles it.