Home | History | Annotate | Download | only in openssh

Lines Matching full:alloc

38 	buffer->alloc = 0;
40 buffer->alloc = len;
50 if (buffer->alloc > 0) {
51 memset(buffer->buf, 0, buffer->alloc);
52 buffer->alloc = 0;
86 if (buffer->offset > MIN(buffer->alloc, BUFFER_MAX_CHUNK)) {
118 if (buffer->end + len < buffer->alloc) {
129 newlen = roundup(buffer->alloc + len, BUFFER_ALLOCSZ);
131 fatal("buffer_append_space: alloc %u not supported",
134 buffer->alloc = newlen;
151 if (buffer->end + len < buffer->alloc)
155 if (roundup(buffer->alloc + len, BUFFER_ALLOCSZ) <= BUFFER_MAX_LEN)