Searched refs:nalloc (Results 1 - 18 of 18) sorted by path

/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Drdataslab.c142 unsigned int nalloc; local
151 nalloc = dns_rdataset_count(rdataset);
152 nitems = nalloc;
156 if (nalloc > 0xffff)
160 if (nalloc != 0) {
161 x = isc_mem_get(mctx, nalloc * sizeof(struct xrdata));
173 for (i = 0; i < nalloc && result == ISC_R_SUCCESS; i++) {
185 if (i != nalloc) {
197 qsort(x, nalloc, sizeof(struct xrdata), compare_rdata);
208 for (i = 1; i < nalloc;
[all...]
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dieee.c777 unsigned int nalloc; local
783 nalloc = info->types.alloc;
784 if (nalloc == 0)
785 nalloc = 4;
786 while (indx >= nalloc)
787 nalloc *= 2;
791 nalloc * sizeof *info->types.types));
794 (nalloc - info->types.alloc) * sizeof *info->types.types);
796 tend = info->types.types + nalloc;
800 info->types.alloc = nalloc;
4517 unsigned int nalloc; local
[all...]
/freebsd-9.3-release/contrib/expat/tests/
H A Dminicheck.c61 int nalloc = tc->allocated + 100; local
62 size_t new_size = sizeof(tcase_test_function) * nalloc;
69 tc->allocated = nalloc;
/freebsd-9.3-release/contrib/gcc/
H A Dc-format.c1074 int nalloc;
1075 nalloc = 2 * dollar_arguments_alloc + 16;
1077 nalloc);
1079 nalloc);
1081 nalloc - dollar_arguments_alloc);
1082 dollar_arguments_alloc = nalloc;
1070 int nalloc; local
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dprocfs.c2973 static int nalloc = 0;
2984 if (nldt > nalloc)
2988 nalloc = nldt;
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dmini_inetd.c70 int n, nalloc, i; local
75 for (nalloc = 0, a = ai; a != NULL; a = a->ai_next)
76 ++nalloc;
78 fds = malloc (nalloc * sizeof(*fds));
/freebsd-9.3-release/crypto/openssh/
H A Dclientloop.c1488 u_int nalloc = 0; local
1605 &max_fd2, &nalloc, rekeying);
H A Dmisc.c460 u_int nalloc; local
469 nalloc = args->nalloc;
471 nalloc = 32;
473 } else if (args->num+2 >= nalloc)
474 nalloc *= 2;
476 args->list = xrealloc(args->list, nalloc, sizeof(char *));
477 args->nalloc = nalloc;
511 args->nalloc
[all...]
H A Dmisc.h52 u_int nalloc; member in struct:arglist
H A Dserverloop.c565 u_int nalloc = 0; local
711 &nalloc, max_time_milliseconds);
830 u_int nalloc = 0; local
866 &nalloc, rekey_timeout_ms);
H A Dssh-agent.c1047 u_int nalloc; local
1275 nalloc = 0;
1278 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Ddfa.c168 /* Reallocate an array of type t if nalloc is too small for index. */
169 #define REALLOC_IF_NECESSARY(p, t, nalloc, index) \
170 if ((index) >= (nalloc)) \
173 (nalloc) *= 2; \
174 while ((index) >= (nalloc)); \
175 REALLOC(p, t, nalloc); \
1674 int *nalloc; /* Sizes of arrays allocated to follow sets. */ local
1706 MALLOC(nalloc, int, d->tindex);
1708 nalloc[i] = 0;
1738 nalloc[po
[all...]
/freebsd-9.3-release/sbin/ipfw/
H A Dipfw2.c1860 int nalloc; local
1862 nalloc = nbytes = sizeof(struct ip_fw);
1863 while (nbytes >= nalloc) {
1866 nalloc = nalloc * 2 + 200;
1867 nbytes = nalloc;
2005 int nalloc = 1024; /* start somewhere... */ local
2022 nbytes = nalloc;
2024 while (nbytes >= nalloc) {
2025 nalloc
[all...]
H A Dnat.c919 int cmd, i, nbytes, do_cfg, do_rule, frule, lrule, nalloc, size; local
925 nalloc = 1024;
951 nbytes = nalloc;
952 while (nbytes >= nalloc) {
953 nalloc = nalloc * 2;
954 nbytes = nalloc;
/freebsd-9.3-release/usr.bin/mail/
H A Dextern.h39 struct name *nalloc(char [], int);
H A Dmain.c189 cc = cat(cc, nalloc(optarg, GCC));
195 bcc = cat(bcc, nalloc(optarg, GBCC));
215 to = cat(to, nalloc(argv[i], GTO));
217 smopts = cat(smopts, nalloc(argv[i], 0));
H A Dnames.c54 nalloc(char str[], int ntype) function
101 t = nalloc(nbuf, ntype);
512 np = nalloc(cp, ntype);
H A Dsend.c439 cat(hp->h_to, nalloc(np->n_name, np->n_type));
442 cat(hp->h_cc, nalloc(np->n_name, np->n_type));
445 cat(hp->h_bcc, nalloc(np->n_name, np->n_type));

Completed in 315 milliseconds