Lines Matching defs:chunk
35 /* A chunk of the linked list that makes up the string */
36 struct chunk {
37 struct chunk *next;
41 #define CHUNK_TO_TEXT(c) ((char*) (c) + PA_ALIGN(sizeof(struct chunk)))
45 struct chunk *head, *tail;
62 struct chunk *c = sb->head;
74 struct chunk *c;
121 /* Append a new chunk to the linked list */
122 static void append(pa_strbuf *sb, struct chunk *c) {
141 struct chunk *c;
149 c = pa_xmalloc(PA_ALIGN(sizeof(struct chunk)) + l);
160 struct chunk *c = NULL;
169 c = pa_xrealloc(c, PA_ALIGN(sizeof(struct chunk)) + size);