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

/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dgetnline.c29 getndelim (char **lineptr, size_t *linesize, size_t nmax, argument
32 return getndelim2 (lineptr, linesize, 0, nmax, delimiter, EOF, stream);
36 getnline (char **lineptr, size_t *linesize, size_t nmax, FILE *stream) argument
38 return getndelim (lineptr, linesize, nmax, '\n', stream);
H A Dgetnline.h34 extern ssize_t getnline (char **lineptr, size_t *linesize, size_t nmax,
45 extern ssize_t getndelim (char **lineptr, size_t *linesize, size_t nmax,
H A Dgetndelim2.c63 getndelim2 (char **lineptr, size_t *linesize, size_t offset, size_t nmax, argument
74 size = nmax < MIN_CHUNK ? nmax : MIN_CHUNK;
86 if (nbytes_avail == 0 && nmax <= size)
99 if (nbytes_avail < 2 && size < nmax)
104 if (! (size < newsize && newsize <= nmax))
105 newsize = nmax;
H A Dgetndelim2.h40 size_t nmax, int delim1, int delim2,
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dgetndelim2.c42 getndelim2 (char **lineptr, size_t *linesize, size_t nmax, argument
48 if (!lineptr || !linesize || !nmax || !stream)
55 if (newlinesize > nmax)
56 newlinesize = nmax;
70 if (nbytes_avail == 0 && *linesize >= nmax)
83 if (nbytes_avail < 2 && *linesize < nmax)
88 if (newlinesize > nmax)
89 newlinesize = nmax;
H A Dgetndelim2.h38 extern ssize_t getndelim2 (char **lineptr, size_t *linesize, size_t nmax,
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/
H A Dbuf.c200 buf->nmax = 0;
230 if (n_elem + buf->nelts > buf->nmax) {
251 buf->nmax = n_alloc;
H A Dflexdef.h1104 int nmax; /* max capacity of elements. */ member in struct:Buf
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Dtgmpop.c202 test_cmp_z (mpfr_prec_t pmin, mpfr_prec_t pmax, int nmax) argument
216 for ( n = 0; n < nmax ; n++)
240 test_cmp_q (mpfr_prec_t pmin, mpfr_prec_t pmax, int nmax) argument
254 for (n = 0 ; n < nmax ; n++)
278 test_cmp_f (mpfr_prec_t pmin, mpfr_prec_t pmax, int nmax) argument
293 for ( n = 0; n < nmax ; n++)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/
H A Ddisplay.c1168 update_line (old, new, current_line, omax, nmax, inv_botlin)
1170 int current_line, omax, nmax, inv_botlin;
1268 temp = (omax < nmax) ? omax : nmax;
1279 if (omax == nmax && STREQN (new, old, omax))
1282 nfd = new + nmax;
1310 for (nd = nfd - new, ne = nfd; nd < nmax && *ne; ne++, nd++);
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/preproc/pic/
H A Dcommon.cpp141 // for symmetry we make nmax a multiple of 8
142 int nmax = 8 * int(le / dw / 8 + 0.5); local
143 if (nmax < 8) {
144 nmax = 8;
147 int ndash = nmax / 2;
154 for (int i = 0; i <= nmax; i++) {
199 // for symmetry we make nmax a multiple of 4
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dloop-iv.c2203 unsigned HOST_WIDEST_INT nmax, inc; local
2208 nmax = INTVAL (XEXP (niter, 0));
2209 if (!(nmax & (nmax + 1)))
2211 desc->niter_max = nmax;
2212 return nmax;
2217 nmax = INTVAL (mmax) - INTVAL (mmin);
2223 desc->niter_max = nmax;
2224 return nmax;
2239 nmax
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dloop-iv.c1278 unsigned HOST_WIDEST_INT nmax, inc; local
1283 nmax = INTVAL (XEXP (niter, 0));
1284 if (!(nmax & (nmax + 1)))
1286 desc->niter_max = nmax;
1287 return nmax;
1292 nmax = INTVAL (mmax) - INTVAL (mmin);
1298 desc->niter_max = nmax;
1299 return nmax;
1330 nmax
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/
H A Dname.c1741 unsigned int nused, labels, n, nmax; local
1800 nmax = isc_buffer_availablelength(target);
1801 if (nmax > DNS_NAME_MAXWIRE)
1802 nmax = DNS_NAME_MAXWIRE;
1826 if (nused + c + 1 > nmax)
1899 if (nmax == DNS_NAME_MAXWIRE)
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tune/
H A Dtuneup.c832 fftmes (mp_size_t nmin, mp_size_t nmax, int initial_k, struct fft_param_t *p, int idx, int print) argument
889 while (n < nmax)

Completed in 237 milliseconds