Lines Matching defs:tmp_fmt
2179 char *tmp_fmt = build_format_string();
2181 snprintf(str + str_off, str_off < size ? size - str_off : 0, tmp_fmt,
2183 free(tmp_fmt);
2188 char *tmp_fmt = build_format_string();
2192 tmp_fmt, width, arg);
2195 tmp_fmt, arg);
2197 free(tmp_fmt);
2450 char *tmp_fmt = build_format_string_with_n();
2452 sscanf(str + str_off, tmp_fmt, &read_count);
2453 free(tmp_fmt);
2461 char *tmp_fmt = build_format_string_with_n();
2463 int retval = sscanf(str + str_off, tmp_fmt, &read_count);
2464 free(tmp_fmt);
2473 char *tmp_fmt = build_format_string_with_n();
2475 int retval = sscanf(str + str_off, tmp_fmt, arg, &read_count);
2476 free(tmp_fmt);