Lines Matching refs:format_code
798 char format_code, in PyOS_double_to_string() argument
810 switch (format_code) { in PyOS_double_to_string()
817 format_code = 'e'; in PyOS_double_to_string()
821 format_code = 'f'; in PyOS_double_to_string()
825 format_code = 'g'; in PyOS_double_to_string()
840 format_code = 'g'; in PyOS_double_to_string()
890 if (format_code == 'f' && fabs(val) >= 1.0) { in PyOS_double_to_string()
915 format_code = 'Z'; in PyOS_double_to_string()
919 format_code); in PyOS_double_to_string()
997 format_float_short(double d, char format_code, in format_float_short() argument
1101 switch (format_code) { in format_float_short()
1245 char format_code, in PyOS_double_to_string() argument
1255 switch (format_code) { in PyOS_double_to_string()
1259 format_code = 'e'; in PyOS_double_to_string()
1269 format_code = 'f'; in PyOS_double_to_string()
1278 format_code = 'g'; in PyOS_double_to_string()
1302 return format_float_short(val, format_code, mode, precision, in PyOS_double_to_string()