Lines Matching defs:tmp_fmt
2182 char *tmp_fmt = build_format_string();
2184 snprintf(str + str_off, str_off < size ? size - str_off : 0, tmp_fmt,
2186 free(tmp_fmt);
2191 char *tmp_fmt = build_format_string();
2195 tmp_fmt, width, arg);
2198 tmp_fmt, arg);
2200 free(tmp_fmt);
2453 char *tmp_fmt = build_format_string_with_n();
2455 sscanf(str + str_off, tmp_fmt, &read_count);
2456 free(tmp_fmt);
2464 char *tmp_fmt = build_format_string_with_n();
2466 int retval = sscanf(str + str_off, tmp_fmt, &read_count);
2467 free(tmp_fmt);
2476 char *tmp_fmt = build_format_string_with_n();
2478 int retval = sscanf(str + str_off, tmp_fmt, arg, &read_count);
2479 free(tmp_fmt);