Home
last modified time | relevance | path

Searched refs:next_free (Results 1 – 17 of 17) sorted by relevance

/netbsd/src/external/gpl3/binutils/dist/include/
Dobstack.h168 char *next_free; /* where to add next char to current object */ member
236 #define obstack_next_free(h) ((void *) (h)->next_free)
269 #define obstack_1grow_fast(h, achar) ((void) (*((h)->next_free)++ = (achar)))
271 #define obstack_blank_fast(h, n) ((void) ((h)->next_free += (n)))
288 (_OBSTACK_SIZE_T) (__o->next_free - __o->object_base); })
295 (_OBSTACK_SIZE_T) (__o1->chunk_limit - __o1->next_free); })
309 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
319 memcpy (__o->next_free, where, __len); \
320 __o->next_free += __len; \
329 memcpy (__o->next_free, where, __len); \
[all …]
/netbsd/src/external/gpl3/gcc/dist/include/
Dobstack.h168 char *next_free; /* where to add next char to current object */ member
236 #define obstack_next_free(h) ((void *) (h)->next_free)
269 #define obstack_1grow_fast(h, achar) ((void) (*((h)->next_free)++ = (achar)))
271 #define obstack_blank_fast(h, n) ((void) ((h)->next_free += (n)))
288 (_OBSTACK_SIZE_T) (__o->next_free - __o->object_base); })
295 (_OBSTACK_SIZE_T) (__o1->chunk_limit - __o1->next_free); })
309 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
319 memcpy (__o->next_free, where, __len); \
320 __o->next_free += __len; \
329 memcpy (__o->next_free, where, __len); \
[all …]
/netbsd/src/external/gpl3/gdb/dist/include/
Dobstack.h168 char *next_free; /* where to add next char to current object */ member
236 #define obstack_next_free(h) ((void *) (h)->next_free)
269 #define obstack_1grow_fast(h, achar) ((void) (*((h)->next_free)++ = (achar)))
271 #define obstack_blank_fast(h, n) ((void) ((h)->next_free += (n)))
288 (_OBSTACK_SIZE_T) (__o->next_free - __o->object_base); })
295 (_OBSTACK_SIZE_T) (__o1->chunk_limit - __o1->next_free); })
309 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
319 memcpy (__o->next_free, where, __len); \
320 __o->next_free += __len; \
329 memcpy (__o->next_free, where, __len); \
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgomp/
Dwork.c48 team->work_share_list_alloc = ws->next_free; in alloc_work_share()
58 if (ws && ws->next_free) in alloc_work_share()
60 struct gomp_work_share *next = ws->next_free; in alloc_work_share()
61 ws->next_free = NULL; in alloc_work_share()
62 team->work_share_list_alloc = next->next_free; in alloc_work_share()
70 team->work_share_list_alloc = ws->next_free; in alloc_work_share()
92 ws[i].next_free = &ws[i + 1]; in alloc_work_share()
93 ws[i].next_free = NULL; in alloc_work_share()
167 ws->next_free = next_ws; in free_work_share()
174 ws->next_free = next_ws; in free_work_share()
Dteam.c206 team->work_shares[i].next_free = &team->work_shares[i + 1]; in gomp_new_team()
207 team->work_shares[i].next_free = NULL; in gomp_new_team()
Dlibgomp.h386 struct gomp_work_share *next_free; member
DChangeLog15321 next_ws, next_free and inline_ordered_team_ids fields, change
/netbsd/src/external/gpl3/gcc/dist/fixincludes/tests/base/
Dobstack.h13 ((*((void **) (h)->next_free) = (aptr)), ( (h)->next_free += sizeof (void *)))
/netbsd/src/external/gpl3/gdb/dist/sim/common/
Dcgen-scache.c383 static int next_free = 0; in scache_lookup_or_alloc() local
387 for (i = 0; i < next_free; ++i, ++scm) in scache_lookup_or_alloc()
389 ++next_free; in scache_lookup_or_alloc()
390 if (next_free == CPU_SCACHE_NUM_HASH_CHAIN_ENTRIES (cpu)) in scache_lookup_or_alloc()
391 next_free = 0; in scache_lookup_or_alloc()
Dcgen-scache.h64 SCACHE *next_free; member
65 #define CPU_SCACHE_NEXT_FREE(cpu) ((cpu) -> cgen_cpu.scache.next_free)
/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dobstack.c145 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents, in _obstack_begin_worker()
192 size_t obj_size = h->next_free - h->object_base; in _obstack_newchunk()
233 h->next_free = h->object_base + obj_size; in _obstack_newchunk()
288 h->object_base = h->next_free = (char *) (obj); in _obstack_free()
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dobstack.c145 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents, in _obstack_begin_worker()
192 size_t obj_size = h->next_free - h->object_base; in _obstack_newchunk()
233 h->next_free = h->object_base + obj_size; in _obstack_newchunk()
288 h->object_base = h->next_free = (char *) (obj); in _obstack_free()
/netbsd/src/external/gpl3/gcc/dist/libiberty/
Dobstack.c145 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents, in _obstack_begin_worker()
192 size_t obj_size = h->next_free - h->object_base; in _obstack_newchunk()
233 h->next_free = h->object_base + obj_size; in _obstack_newchunk()
288 h->object_base = h->next_free = (char *) (obj); in _obstack_free()
/netbsd/src/lib/libc/db/hash/
Dhash.h299 #define NEXT_FREE hdr.next_free
/netbsd/src/external/gpl3/gcc/dist/fixincludes/
Dinclhack.def3609 test_text = "*((void **) (h)->next_free)++ = (aptr)";
/netbsd/src/external/gpl3/gcc/dist/gcc/
DChangeLog.tuples4685 Add field 'next_free'.
DFSFChangeLog.101000 permanent_obstack.next_free is *end* of available space.