Home
last modified time | relevance | path

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

/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dalloc_entry.c57 static size_t next_free; /* next free character in stringbuf */ variable
79 next_free = 0; in _nc_init_entry()
108 size_t old_next_free = next_free; in _nc_save_str()
117 if (len == 1 && next_free != 0) { in _nc_save_str()
122 if (next_free < MAX_ENTRY_SIZE) { in _nc_save_str()
123 result = (stringbuf + next_free - 1); in _nc_save_str()
125 } else if (next_free + len < MAX_ENTRY_SIZE) { in _nc_save_str()
126 _nc_STRCPY(&stringbuf[next_free], string, MAX_ENTRY_SIZE); in _nc_save_str()
128 DEBUG(7, ("at location %d", (int) next_free)); in _nc_save_str()
129 next_free += len; in _nc_save_str()
[all …]
/freebsd/sys/dev/adb/
H A Dadb_bus.c109 uint8_t i, next_free; in adb_bus_enumerate() local
130 next_free = 8; in adb_bus_enumerate()
144 r3 |= ((uint16_t)(next_free) & 0x000f) << 8; in adb_bus_enumerate()
150 adb_send_raw_packet_sync(dev,next_free, in adb_bus_enumerate()
153 sc->devinfo[next_free].default_address = i; in adb_bus_enumerate()
155 first_relocated = next_free; in adb_bus_enumerate()
157 next_free++; in adb_bus_enumerate()
/freebsd/lib/libc/db/hash/
H A Dhash.h288 #define NEXT_FREE hdr.next_free
/freebsd/contrib/unbound/services/
H A Doutside_network.h352 struct pending_tcp* next_free; member
H A Doutside_network.c747 w->outnet->tcp_free = pend->next_free;
748 pend->next_free = NULL;
1179 pend->next_free = outnet->tcp_free;
1623 outnet->tcp_conns[i]->next_free = outnet->tcp_free;
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.h926 char *next_free;
925 char *next_free; global() member
H A Dsanitizer_platform_limits_posix.cpp1337 CHECK_SIZE_AND_OFFSET(obstack, next_free);
H A Dsanitizer_common_interceptors.inc6269 obstack->chunk, obstack->next_free - (char *)obstack->chunk);