HomeSort by: relevance | last modified time | path
    Searched defs:abytes (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.sbin/sysinst/
run.c 179 size_t abytes; /* allocated size of buffer */ local in function:collect
222 abytes = BUFSIZE;
224 abytes = fbytes+1;
227 *buffer = cp = malloc(abytes);
234 if (nbytes >= abytes-1) {
235 if (fbytes > 0 || abytes >= 512*BUFSIZE) {
241 abytes *= 2;
242 *buffer = cp = realloc(cp, abytes);
run.c 179 size_t abytes; /* allocated size of buffer */ local in function:collect
222 abytes = BUFSIZE;
224 abytes = fbytes+1;
227 *buffer = cp = malloc(abytes);
234 if (nbytes >= abytes-1) {
235 if (fbytes > 0 || abytes >= 512*BUFSIZE) {
241 abytes *= 2;
242 *buffer = cp = realloc(cp, abytes);

Completed in 22 milliseconds