Searched refs:new_alloc (Results 1 – 5 of 5) sorted by relevance
| /NextBSD/contrib/ntp/libntp/ |
| HD | ntp_worker.c | 132 size_t new_alloc; in available_blocking_child_slot() local 147 new_alloc = blocking_children_alloc + 4; in available_blocking_child_slot() 148 octets = new_alloc * each; in available_blocking_child_slot() 151 blocking_children_alloc = new_alloc; in available_blocking_child_slot()
|
| HD | work_thread.c | 149 size_t new_alloc; in ensure_workitems_empty_slot() local 154 new_alloc = c->workitems_alloc + WORKITEMS_ALLOC_INC; in ensure_workitems_empty_slot() 155 c->workitems = erealloc(c->workitems, new_alloc * each); in ensure_workitems_empty_slot() 158 c->workitems_alloc = new_alloc; in ensure_workitems_empty_slot() 181 size_t new_alloc; in ensure_workresp_empty_slot() local 186 new_alloc = c->responses_alloc + RESPONSES_ALLOC_INC; in ensure_workresp_empty_slot() 187 c->responses = erealloc(c->responses, new_alloc * each); in ensure_workresp_empty_slot() 190 c->responses_alloc = new_alloc; in ensure_workresp_empty_slot()
|
| HD | ntp_intres.c | 914 u_int new_alloc; in reserve_dnschild_ctx() local 927 new_alloc = dnschild_contexts_alloc + 20; in reserve_dnschild_ctx() 928 new_octets = new_alloc * ps; in reserve_dnschild_ctx() 932 dnschild_contexts_alloc = new_alloc; in reserve_dnschild_ctx() 972 u_int new_alloc; in get_worker_context() local 979 new_alloc = (min_new_alloc + 4) & ~(4 - 1); in get_worker_context() 980 new_octets = new_alloc * ps; in get_worker_context() 984 dnsworker_contexts_alloc = new_alloc; in get_worker_context()
|
| /NextBSD/contrib/libgnuregex/ |
| HD | regex_internal.c | 1061 int new_alloc = src1->nelem + src2->nelem + dest->alloc; in re_node_set_add_intersect() local 1062 int *new_elems = re_realloc (dest->elems, int, new_alloc); in re_node_set_add_intersect() 1066 dest->alloc = new_alloc; in re_node_set_add_intersect() 1201 int new_alloc = 2 * (src->nelem + dest->alloc); in re_node_set_merge() local 1202 int *new_buffer = re_realloc (dest->elems, int, new_alloc); in re_node_set_merge() 1206 dest->alloc = new_alloc; in re_node_set_merge() 1580 int new_alloc = 2 * spot->num + 2; in register_state() local 1582 new_alloc); in register_state() 1586 spot->alloc = new_alloc; in register_state()
|
| /NextBSD/crypto/openssh/ |
| HD | ssh-agent.c | 812 u_int i, old_alloc, new_alloc; in new_socket() local 833 new_alloc = sockets_alloc + 10; in new_socket() 834 sockets = xrealloc(sockets, new_alloc, sizeof(sockets[0])); in new_socket() 835 for (i = old_alloc; i < new_alloc; i++) in new_socket() 837 sockets_alloc = new_alloc; in new_socket()
|