Home
last modified time | relevance | path

Searched refs:user_precision (Results 1 – 1 of 1) sorted by relevance

/coreutils/src/
Dnumfmt.c180 static long int user_precision = -1; variable
779 if (user_precision != -1) in double_to_human()
780 power_adjust = MIN (power * 3, user_precision); in double_to_human()
810 int prec = user_precision == -1 ? show_decimal_point : user_precision; in double_to_human()
1098 user_precision = strtol (fmt + i, &endptr, 10); in parse_format_string()
1099 if (errno == ERANGE || user_precision < 0 || SIZE_MAX < user_precision in parse_format_string()
1179 size_t precision_used = user_precision == -1 ? precision : user_precision; in prepare_padded_number()