Searched refs:line_buf_size (Results 1 - 1 of 1) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dprotoize.c987 static int line_buf_size = 0;
995 line_buf_size = 1024;
996 line_buf = xmalloc (line_buf_size);
1014 if (copy_p + size - line_buf >= line_buf_size)
1017 line_buf_size *= 2;
1018 line_buf_size += size;
1019 line_buf = xrealloc (line_buf, line_buf_size);
1032 if (copy_p - line_buf == line_buf_size)
1035 line_buf_size *= 2;
1036 line_buf = xrealloc (line_buf, line_buf_size);
978 static int line_buf_size = 0; local
[all...]

Completed in 55 milliseconds