Searched refs:nalloc (Results 1 – 9 of 9) sorted by relevance
/freebsd/crypto/heimdal/lib/roken/ |
H A D | mini_inetd.c | 93 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/usr.bin/mail/ |
H A D | main.c | 220 cc = cat(cc, nalloc(optarg, GCC)); in main() 226 bcc = cat(bcc, nalloc(optarg, GBCC)); in main() 246 to = cat(to, nalloc(argv[i], GTO)); in main() 248 smopts = cat(smopts, nalloc(argv[i], 0)); in main()
|
H A D | send.c | 433 cat(hp->h_to, nalloc(np->n_name, np->n_type)); in fixhead() 436 cat(hp->h_cc, nalloc(np->n_name, np->n_type)); in fixhead() 439 cat(hp->h_bcc, nalloc(np->n_name, np->n_type)); in fixhead()
|
H A D | names.c | 48 nalloc(char str[], int ntype) in nalloc() function 95 t = nalloc(nbuf, ntype); in extract() 506 np = nalloc(cp, ntype); in gexpand()
|
H A D | extern.h | 37 struct name *nalloc(char *, int);
|
/freebsd/contrib/expat/tests/ |
H A D | minicheck.c | 95 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/crypto/openssh/ |
H A D | misc.c | 1129 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 …]
|
H A D | misc.h | 131 u_int nalloc; member
|
/freebsd/sys/dev/cxgbe/ |
H A D | t4_main.c | 4578 int rc, itype, navail, nalloc; in cfg_itype_and_nqueues() local 4596 nalloc = iaq->nirq; in cfg_itype_and_nqueues() 4599 rc = pci_alloc_msix(sc->dev, &nalloc); in cfg_itype_and_nqueues() 4601 rc = pci_alloc_msi(sc->dev, &nalloc); in cfg_itype_and_nqueues() 4603 if (rc == 0 && nalloc > 0) { in cfg_itype_and_nqueues() 4604 if (nalloc == iaq->nirq) in cfg_itype_and_nqueues() 4613 itype, iaq->nirq, nalloc); in cfg_itype_and_nqueues() 4615 navail = nalloc; in cfg_itype_and_nqueues() 4621 itype, rc, iaq->nirq, nalloc); in cfg_itype_and_nqueues()
|