Lines Matching refs:precision
1397 int precision; /* Field precision from field specifier, or 0
1398 * if no precision given. */
1401 * ("e", "s", etc.), width, and precision. */
1456 width = precision = noPercent = useShort = 0;
1568 precision = strtoul(format, &end, 10);
1574 if (Tcl_GetInt(interp, argv[argIndex], &precision) != TCL_OK) {
1580 if (precision != 0) {
1581 sprintf(newPtr, "%d", precision);
1613 size = 40 + precision;
1638 if (precision > 10) {
1639 size += precision;