Searched refs:nmax (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.1-release/usr.bin/users/
H A Dusers.c63 int nmax = 0; local
81 if (ncnt >= nmax) {
82 nmax += 32;
83 names = realloc(names, sizeof(*names) * nmax);
/freebsd-10.1-release/sbin/mdconfig/tests/
H A Drun.pl122 my $nmax = (@$out > @$result) ? @$out : @$result;
123 for (my $n=0; $n < $nmax; $n++) {
144 for (my $n=0; $n < $nmax; $n++) {
/freebsd-10.1-release/tools/regression/acltools/
H A Drun122 my $nmax = (@$out > @$result) ? @$out : @$result;
123 for (my $n=0; $n < $nmax; $n++) {
144 for (my $n=0; $n < $nmax; $n++) {
/freebsd-10.1-release/contrib/flex/
H A Dbuf.c214 buf->nmax = 0;
244 if (n_elem + buf->nelts > buf->nmax) {
265 buf->nmax = n_alloc;
H A Dflexdef.h1107 int nmax; /* max capacity of elements. */ member in struct:Buf
/freebsd-10.1-release/contrib/groff/src/preproc/pic/
H A Dcommon.cpp139 // for symmetry we make nmax a multiple of 8
140 int nmax = 8 * int(le / dw / 8 + 0.5); local
141 if (nmax < 8) {
142 nmax = 8;
145 int ndash = nmax / 2;
152 for (int i = 0; i <= nmax; i++) {
197 // for symmetry we make nmax a multiple of 4
/freebsd-10.1-release/contrib/gcc/
H A Dloop-iv.c1271 unsigned HOST_WIDEST_INT nmax, inc; local
1276 nmax = INTVAL (XEXP (niter, 0));
1277 if (!(nmax & (nmax + 1)))
1279 desc->niter_max = nmax;
1280 return nmax;
1285 nmax = INTVAL (mmax) - INTVAL (mmin);
1291 desc->niter_max = nmax;
1292 return nmax;
1323 nmax
[all...]
/freebsd-10.1-release/contrib/libreadline/
H A Ddisplay.c1203 update_line (old, new, current_line, omax, nmax, inv_botlin)
1205 int current_line, omax, nmax, inv_botlin;
1303 temp = (omax < nmax) ? omax : nmax;
1314 if (omax == nmax && STREQN (new, old, omax))
1317 nfd = new + nmax;
1345 for (nd = nfd - new, ne = nfd; nd < nmax && *ne; ne++, nd++);
/freebsd-10.1-release/contrib/wpa/src/utils/
H A Deloop.c167 int nmax = eloop.count + 1 + 50; local
168 n = os_realloc_array(eloop.pollfds, nmax,
173 eloop.max_poll_fds = nmax;
/freebsd-10.1-release/sys/dev/mcd/
H A Dmcd.c123 static int mcd_get(struct mcd_softc *, char *buf, int nmax);
667 mcd_get(struct mcd_softc *sc, char *buf, int nmax) argument
671 for (i=0; i<nmax; i++) {

Completed in 135 milliseconds