Lines Matching refs:alloc
37 buffer->alloc = 0; in buffer_init()
39 buffer->alloc = len; in buffer_init()
49 if (buffer->alloc > 0) { in buffer_free()
50 memset(buffer->buf, 0, buffer->alloc); in buffer_free()
51 buffer->alloc = 0; in buffer_free()
85 if (buffer->offset > MIN(buffer->alloc, BUFFER_MAX_CHUNK)) { in buffer_compact()
117 if (buffer->end + len < buffer->alloc) { in buffer_append_space()
128 newlen = roundup(buffer->alloc + len, BUFFER_ALLOCSZ); in buffer_append_space()
133 buffer->alloc = newlen; in buffer_append_space()
150 if (buffer->end + len < buffer->alloc) in buffer_check_alloc()
154 if (roundup(buffer->alloc + len, BUFFER_ALLOCSZ) <= BUFFER_MAX_LEN) in buffer_check_alloc()