Searched refs:next_free (Results 1 - 9 of 9) sorted by relevance

/haiku-fatelf/src/bin/coreutils/lib/
H A Dobstack.h155 char *next_free; /* where to add next char to current object */
220 #define obstack_next_free(h) ((h)->next_free)
253 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
255 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
276 (unsigned) (__o->next_free - __o->object_base); })
281 (unsigned) (__o->chunk_limit - __o->next_free); })
287 if (__o->chunk_limit - __o->next_free < __len) \
295 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
303 if (__o->next_free + __len > __o->chunk_limit) \
305 memcpy (__o->next_free, wher
154 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
H A Dobstack.c179 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
227 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
250 register long obj_size = h->next_free - h->object_base;
305 h->next_free = h->object_base + obj_size;
366 h->object_base = h->next_free = (char *) (obj);
/haiku-fatelf/src/system/libroot/posix/glibc/extensions/
H A Dobstack.h170 char *next_free; /* where to add next char to current object */
287 #define obstack_next_free(h) ((h)->next_free)
353 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = achar)
355 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
376 (unsigned) (__o->next_free - __o->object_base); })
381 (unsigned) (__o->chunk_limit - __o->next_free); })
387 if (__o->chunk_limit - __o->next_free < __len) \
394 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
400 if (__o->next_free + __len > __o->chunk_limit) \
402 _obstack_memcpy (__o->next_free, (wher
169 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
H A Dobstack.c204 h->next_free = h->object_base = chunk->contents;
264 h->next_free = h->object_base = chunk->contents;
288 register long obj_size = h->next_free - h->object_base;
341 h->next_free = h->object_base + obj_size;
410 h->object_base = h->next_free = (char *) (obj);
448 h->object_base = h->next_free = (char *) (obj);
/haiku-fatelf/src/system/libroot/posix/glibc/include/
H A Dobstack.h170 char *next_free; /* where to add next char to current object */
287 #define obstack_next_free(h) ((h)->next_free)
353 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = achar)
355 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
376 (unsigned) (__o->next_free - __o->object_base); })
381 (unsigned) (__o->chunk_limit - __o->next_free); })
387 if (__o->chunk_limit - __o->next_free < __len) \
394 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
400 if (__o->next_free + __len > __o->chunk_limit) \
402 _obstack_memcpy (__o->next_free, (wher
169 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
/haiku-fatelf/src/bin/gdb/include/
H A Dobstack.h174 char *next_free; /* where to add next char to current object */
290 #define obstack_next_free(h) ((h)->next_free)
349 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
351 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
372 (unsigned) (__o->next_free - __o->object_base); })
377 (unsigned) (__o->chunk_limit - __o->next_free); })
383 if (__o->chunk_limit - __o->next_free < __len) \
390 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
396 if (__o->next_free + __len > __o->chunk_limit) \
398 _obstack_memcpy (__o->next_free, (wher
173 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dalloc_entry.c59 static size_t next_free; /* next free character in stringbuf */ variable
101 next_free = 0;
121 size_t old_next_free = next_free;
124 if (len == 1 && next_free != 0) {
129 if (next_free < MAX_STRTAB) {
130 result = (stringbuf + next_free - 1);
132 } else if (next_free + len < MAX_STRTAB) {
133 strcpy(&stringbuf[next_free], string);
135 DEBUG(7, ("at location %d", (int) next_free));
136 next_free
[all...]
/haiku-fatelf/src/system/kernel/debug/
H A Ddebug_heap.cpp32 uint32 next_free; member in struct:free_entry
99 index = ((free_entry*)&fBase[index])->next_free;
174 next = ((free_entry*)&fBase[next])->next_free;
187 ((free_entry*)&fBase[previous])->next_free = index;
192 ((free_entry*)&fBase[index])->next_free = next;
200 uint32 next = ((free_entry*)&fBase[index])->next_free;
203 ((free_entry*)&fBase[previous])->next_free = next;
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dobstack.c199 h->next_free = h->object_base = chunk->contents;
259 h->next_free = h->object_base = chunk->contents;
283 register long obj_size = h->next_free - h->object_base;
330 h->next_free = h->object_base + obj_size;
397 h->object_base = h->next_free = (char *) (obj);
431 h->object_base = h->next_free = (char *) (obj);

Completed in 172 milliseconds