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

/freebsd-9.3-release/contrib/binutils/include/
H A Dobstack.h170 char *next_free; /* where to add next char to current object */
261 #define obstack_next_free(h) ((h)->next_free)
292 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
294 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
315 (unsigned) (__o->next_free - __o->object_base); })
320 (unsigned) (__o->chunk_limit - __o->next_free); })
326 if (__o->chunk_limit - __o->next_free < __len) \
333 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
339 if (__o->next_free + __len > __o->chunk_limit) \
341 _obstack_memcpy (__o->next_free, (wher
169 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
/freebsd-9.3-release/contrib/gcclibs/include/
H A Dobstack.h170 char *next_free; /* where to add next char to current object */
261 #define obstack_next_free(h) ((h)->next_free)
292 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
294 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
315 (unsigned) (__o->next_free - __o->object_base); })
320 (unsigned) (__o->chunk_limit - __o->next_free); })
326 if (__o->chunk_limit - __o->next_free < __len) \
333 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
339 if (__o->next_free + __len > __o->chunk_limit) \
341 _obstack_memcpy (__o->next_free, (wher
169 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Dobstack.h167 char *next_free; /* where to add next char to current object */
284 #define obstack_next_free(h) ((h)->next_free)
343 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = achar)
345 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
366 (unsigned) (__o->next_free - __o->object_base); })
371 (unsigned) (__o->chunk_limit - __o->next_free); })
377 if (__o->chunk_limit - __o->next_free < __len) \
384 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
390 if (__o->next_free + __len > __o->chunk_limit) \
392 _obstack_memcpy (__o->next_free, (cha
166 char *next_free; /* where to add next char to current object */ member in struct:obstack
[all...]
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);
/freebsd-9.3-release/contrib/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...]
/freebsd-9.3-release/contrib/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...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dstandalone.c435 char *next_free;
441 if (next_free + amount > memory_limit)
443 next_free += amount;
444 return next_free - amount;
458 return memory_limit - next_free;
463 addr->rlim_cur = memory_limit - next_free;
585 next_free = next;
429 char *next_free; variable
/freebsd-9.3-release/contrib/gcc/
H A Dcselib.h32 struct cselib_val_struct * GTY ((skip)) next_free; member in union:cselib_val_u
H A Dggc-zone.c140 struct alloc_chunk *next_free; member in struct:alloc_chunk
984 chunk->next_free = zone->free_chunks[bin];
991 chunk->next_free = zone->free_chunks[bin];
1067 zone->free_chunks[bin] = chunk->next_free;
1100 zone->free_chunks[tbin] = chunk->next_free;
1130 pp = &chunk->next_free;
1137 *pp = chunk->next_free;
1790 chunk = chunk->next_free;
2027 chunk = chunk->next_free;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dobstack.c176 h->next_free = h->object_base = chunk->contents;
222 h->next_free = h->object_base = chunk->contents;
244 register long obj_size = h->next_free - h->object_base;
291 h->next_free = h->object_base + obj_size;
352 h->object_base = h->next_free = (char *) (obj);
384 h->object_base = h->next_free = (char *) (obj);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dobstack.c176 h->next_free = h->object_base = chunk->contents;
222 h->next_free = h->object_base = chunk->contents;
244 register long obj_size = h->next_free - h->object_base;
291 h->next_free = h->object_base + obj_size;
352 h->object_base = h->next_free = (char *) (obj);
384 h->object_base = h->next_free = (char *) (obj);
/freebsd-9.3-release/sys/dev/adb/
H A Dadb_bus.c113 uint8_t i, next_free; local
134 next_free = 8;
145 /* If we got a response, relocate to next_free */
148 r3 |= ((uint16_t)(next_free) & 0x000f) << 8;
154 adb_send_raw_packet_sync(dev,next_free,
157 sc->devinfo[next_free].default_address = i;
159 first_relocated = next_free;
161 next_free++;
/freebsd-9.3-release/lib/libc/db/hash/
H A Dhash.h289 #define NEXT_FREE hdr.next_free
/freebsd-9.3-release/contrib/binutils/gas/
H A Dstabs.c206 saved_string_obstack_end = notes.next_free;
344 if (saved_string_obstack_end == notes.next_free)

Completed in 164 milliseconds