Home
last modified time | relevance | path

Searched refs:old_alloc (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/crypto/external/bsd/openssh/dist/
Dssh-agent.c1911 u_int i, old_alloc, new_alloc; in new_socket() local
1930 old_alloc = sockets_alloc; in new_socket()
1932 sockets = xrecallocarray(sockets, old_alloc, new_alloc, in new_socket()
1934 for (i = old_alloc; i < new_alloc; i++) in new_socket()
1937 sockets[old_alloc].fd = fd; in new_socket()
1938 if ((sockets[old_alloc].input = sshbuf_new()) == NULL || in new_socket()
1939 (sockets[old_alloc].output = sshbuf_new()) == NULL || in new_socket()
1940 (sockets[old_alloc].request = sshbuf_new()) == NULL) in new_socket()
1942 sockets[old_alloc].type = type; in new_socket()
/netbsd/src/external/gpl2/xcvs/dist/lib/
Dregexec.c2884 Idx old_alloc = path->alloc; in check_arrival() local
2885 Idx new_alloc = old_alloc + last_str + mctx->max_mb_elem_len + 1; in check_arrival()
2886 if (BE (new_alloc < old_alloc, 0)) in check_arrival()
2893 memset (new_array + old_alloc, '\0', in check_arrival()
2894 sizeof (re_dfastate_t *) * (new_alloc - old_alloc)); in check_arrival()