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

/freebsd-9.3-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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-release/contrib/bind9/lib/dns/
H A Dname.c1754 unsigned int nused, labels, n, nmax; local
1813 nmax = isc_buffer_availablelength(target);
1814 if (nmax > DNS_NAME_MAXWIRE)
1815 nmax = DNS_NAME_MAXWIRE;
1839 if (nused + c + 1 > nmax)
1912 if (nmax == DNS_NAME_MAXWIRE)
/freebsd-9.3-release/sys/dev/mcd/
H A Dmcd.c123 static int mcd_get(struct mcd_softc *, char *buf, int nmax);
674 mcd_get(struct mcd_softc *sc, char *buf, int nmax) argument
678 for (i=0; i<nmax; i++) {

Completed in 240 milliseconds