/src/usr.bin/mail/ |
main.c | 169 np = cat(np, nalloc(word, ntype)); 253 np = nalloc(optarg, 0); 383 to = cat(to, nalloc(argv[i], GTO)); 385 smopts = cat(smopts, nalloc(argv[i], GSMOPTS));
|
send.c | 351 cat(hp->h_to, nalloc(np->n_name, np->n_type)); 354 cat(hp->h_cc, nalloc(np->n_name, np->n_type)); 357 cat(hp->h_bcc, nalloc(np->n_name, np->n_type)); 663 tp = nalloc(np->n_name, np->n_type);
|
names.c | 56 nalloc(char str[], int ntype) function in typeref:typename:PUBLIC struct name * 145 t = nalloc(nbuf, ntype); 449 np = nalloc(cp, ntype);
|
tty.c | 259 t = nalloc(argv[i], ntype);
|
extern.h | 224 struct name * nalloc(char [], int);
|
/src/sys/netinet/ |
tcp_vtw.h | 260 uint32_t nalloc; /* # allocated */ member in struct:vtw_ctl 277 uint32_t nalloc; /* # allocated */ member in struct:fatp_ctl
|
tcp_vtw.c | 178 ++fat->nalloc; 201 --fat->nalloc; 228 fat->nalloc = 2*n; 690 --ctl->nalloc; 696 if (!ctl->nalloc) 1380 int avail = ctl ? (ctl->nalloc + ctl->nfree) : 0; 1410 , ctl->nalloc, ctl->nfree)); 1458 ++ctl->nalloc; 1492 KASSERT(!ctl->nalloc); 1496 for (vtw = ctl->oldest.v; vtw && ctl->nalloc; ) { [all...] |
/src/sys/external/bsd/drm2/linux/ |
linux_dma_resv.c | 328 uint32_t n, nalloc; local in function:dma_resv_reserve_shared 359 nalloc = n > UINT32_MAX/2 ? UINT32_MAX : 2*n; 360 prealloc = objlist_alloc(nalloc); 367 nalloc = n > UINT32_MAX/2 ? UINT32_MAX : MAX(2*n, 4); 368 prealloc = objlist_alloc(nalloc);
|
/src/sys/kern/ |
subr_vmem.c | 1804 int nalloc = 0; local in function:main 1918 nalloc++; 1937 fprintf(stderr, "total=%" PRIu64 ", nalloc=%d, nfree=%d\n", 1938 (uint64_t)total, nalloc, nfree);
|
/src/sys/ufs/ffs/ |
ffs_alloc.c | 1272 daddr_t nalloc; local in function:ffs_nodealloccg 1311 nalloc = fs->fs_ipg - ufs_rw32(cgp->cg_cs.cs_nifree, needswap); 1312 if (nalloc + FFS_INOPB(fs) > initediblk &&
|