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

/freebsd-11.0-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-11.0-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-11.0-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-11.0-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-11.0-release/contrib/ncurses/ncurses/tinfo/
H A Dalloc_entry.c58 static size_t next_free; /* next free character in stringbuf */ variable
76 next_free = 0;
98 size_t old_next_free = next_free;
101 if (len == 1 && next_free != 0) {
106 if (next_free < MAX_STRTAB) {
107 result = (stringbuf + next_free - 1);
109 } else if (next_free + len < MAX_STRTAB) {
110 _nc_STRCPY(&stringbuf[next_free], string, MAX_STRTAB);
112 DEBUG(7, ("at location %d", (int) next_free));
113 next_free
[all...]
/freebsd-11.0-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-11.0-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-11.0-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-11.0-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-11.0-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-11.0-release/lib/libc/db/hash/
H A Dhash.h289 #define NEXT_FREE hdr.next_free
/freebsd-11.0-release/sys/vm/
H A Dvm_reserv.c1003 int hi, i, lo, low_index, next_free; local
1036 next_free = NBPOPMAP * i + lo;
1037 pa = VM_PAGE_TO_PHYS(&rv->pages[next_free]);
1062 if ((NBPOPMAP * i - next_free) * PAGE_SIZE >=
1072 if ((NBPOPMAP * i + hi - next_free) * PAGE_SIZE >=
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_delta/
H A Dcompose_delta.c100 alloc_block_t *next_free;
114 *free_list = block->next_free;
125 block->next_free = *free_list;
99 alloc_block_t *next_free; member in union:alloc_block_t
/freebsd-11.0-release/contrib/binutils/gas/
H A Dstabs.c206 saved_string_obstack_end = notes.next_free;
344 if (saved_string_obstack_end == notes.next_free)
/freebsd-11.0-release/contrib/unbound/services/
H A Doutside_network.h243 struct pending_tcp* next_free; member in struct:pending_tcp
H A Doutside_network.c280 w->outnet->tcp_free = pend->next_free;
281 pend->next_free = NULL;
328 pend->next_free = outnet->tcp_free;
573 outnet->tcp_conns[i]->next_free = outnet->tcp_free;
1129 pend->next_free = outnet->tcp_free;
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.h800 char *next_free; member in struct:__sanitizer_obstack
H A Dsanitizer_platform_limits_posix.cc1258 CHECK_SIZE_AND_OFFSET(obstack, next_free);
H A Dsanitizer_common_interceptors.inc4928 obstack->chunk, obstack->next_free - (char *)obstack->chunk);

Completed in 629 milliseconds