Home
last modified time | relevance | path

Searched refs:nalloc (Results 1 – 9 of 9) sorted by relevance

/freebsd-14-stable/crypto/heimdal/lib/roken/
HDmini_inetd.c93 int n, nalloc, i; in mini_inetd_addrinfo() local
98 for (nalloc = 0, a = ai; a != NULL; a = a->ai_next) in mini_inetd_addrinfo()
99 ++nalloc; in mini_inetd_addrinfo()
101 fds = malloc (nalloc * sizeof(*fds)); in mini_inetd_addrinfo()
/freebsd-14-stable/usr.bin/mail/
HDmain.c232 cc = cat(cc, nalloc(optarg, GCC)); in main()
238 bcc = cat(bcc, nalloc(optarg, GBCC)); in main()
258 to = cat(to, nalloc(argv[i], GTO)); in main()
260 smopts = cat(smopts, nalloc(argv[i], 0)); in main()
HDsend.c439 cat(hp->h_to, nalloc(np->n_name, np->n_type)); in fixhead()
442 cat(hp->h_cc, nalloc(np->n_name, np->n_type)); in fixhead()
445 cat(hp->h_bcc, nalloc(np->n_name, np->n_type)); in fixhead()
HDnames.c54 nalloc(char str[], int ntype) in nalloc() function
101 t = nalloc(nbuf, ntype); in extract()
512 np = nalloc(cp, ntype); in gexpand()
HDextern.h39 struct name *nalloc(char *, int);
/freebsd-14-stable/contrib/expat/tests/
HDminicheck.c95 int nalloc = tc->allocated + 100; in tcase_add_test() local
96 size_t new_size = sizeof(tcase_test_function) * nalloc; in tcase_add_test()
101 tc->allocated = nalloc; in tcase_add_test()
/freebsd-14-stable/crypto/openssh/
HDmisc.c1129 u_int nalloc; in addargs() local
1138 nalloc = args->nalloc; in addargs()
1140 nalloc = 32; in addargs()
1144 else if (args->num >= args->nalloc) in addargs()
1146 else if (args->num+2 >= nalloc) in addargs()
1147 nalloc *= 2; in addargs()
1149 args->list = xrecallocarray(args->list, args->nalloc, in addargs()
1150 nalloc, sizeof(char *)); in addargs()
1151 args->nalloc = nalloc; in addargs()
1168 if (args->list == NULL || args->num >= args->nalloc) in replacearg()
[all …]
HDmisc.h131 u_int nalloc; member
/freebsd-14-stable/sys/dev/cxgbe/
HDt4_main.c4592 int rc, itype, navail, nalloc; in cfg_itype_and_nqueues() local
4610 nalloc = iaq->nirq; in cfg_itype_and_nqueues()
4613 rc = pci_alloc_msix(sc->dev, &nalloc); in cfg_itype_and_nqueues()
4615 rc = pci_alloc_msi(sc->dev, &nalloc); in cfg_itype_and_nqueues()
4617 if (rc == 0 && nalloc > 0) { in cfg_itype_and_nqueues()
4618 if (nalloc == iaq->nirq) in cfg_itype_and_nqueues()
4627 itype, iaq->nirq, nalloc); in cfg_itype_and_nqueues()
4629 navail = nalloc; in cfg_itype_and_nqueues()
4635 itype, rc, iaq->nirq, nalloc); in cfg_itype_and_nqueues()