Lines Matching refs:newbase
41 char *newbase = realloc(buffer->base, target_allocation_size(newsize)); in pkgconf_buffer_append() local
44 if (newbase == NULL) in pkgconf_buffer_append()
47 char *newend = newbase + pkgconf_buffer_len(buffer); in pkgconf_buffer_append()
50 buffer->base = newbase; in pkgconf_buffer_append()
58 char *newbase = realloc(buffer->base, target_allocation_size(newsize)); in pkgconf_buffer_push_byte() local
61 if (newbase == NULL) in pkgconf_buffer_push_byte()
64 char *newend = newbase + newsize; in pkgconf_buffer_push_byte()
68 buffer->base = newbase; in pkgconf_buffer_push_byte()
76 char *newbase = realloc(buffer->base, target_allocation_size(newsize)); in pkgconf_buffer_trim_byte() local
78 buffer->base = newbase; in pkgconf_buffer_trim_byte()
79 buffer->end = newbase + newsize; in pkgconf_buffer_trim_byte()