Home | History | Annotate | Download | only in binutils

Lines Matching refs:BUFSIZE

1628   size_t bufsize;
1638 bufsize = 100;
1639 buf = (char *) xmalloc (bufsize + 1 /* For the terminating NUL. */);
1653 if (len >= bufsize)
1655 bufsize *= 2;
1656 buf = (char *) xrealloc (buf, bufsize + 1);
1679 if (len >= bufsize)
1681 bufsize *= 2;
1682 buf = (char *) xrealloc (buf, bufsize + 1);
1767 cbuf = (char *) xmalloc (BUFSIZE);
1772 if (tocopy > BUFSIZE)
1773 tocopy = BUFSIZE;