Searched refs:next_free (Results 1 – 1 of 1) sorted by relevance
156 char *next_free; /* where to add next char to current object */ member214 #define obstack_next_free(h) ((h)->next_free)247 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))249 #define obstack_blank_fast(h,n) ((h)->next_free += (n))269 (unsigned) (__o->next_free - __o->object_base); })274 (unsigned) (__o->chunk_limit - __o->next_free); })280 if (__o->chunk_limit - __o->next_free < __len) \288 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \296 if (__o->next_free + __len > __o->chunk_limit) \298 memcpy (__o->next_free, where, __len); \[all …]