Searched defs:nmax (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/fp/
H A Dfile_decim.c52 file_to_decimal(char **ppc, int nmax, int fortran_conventions, argument
63 if (nread < nmax) { \
H A Dfunc_decim.c37 func_to_decimal(char **ppc, int nmax, int fortran_conventions, argument
48 if (nread < nmax) { \
H A Dstring_decim.c37 string_to_decimal(char **ppc, int nmax, int fortran_conventions, argument
49 if (nread < nmax) { \
/illumos-gate/usr/src/lib/libtecla/common/
H A Dcplfile.c778 int nmax = nammax < slen ? nammax : slen; local
783 namlen < nmax && (slen-namlen < FS_DIR_SEP_LEN ||
/illumos-gate/usr/src/lib/libbe/common/
H A Dbe_list.c740 const size_t nmax = ptrlist[ibe]->be_node_num_snapshots; local
742 malloc(sizeof (be_snapshot_list_t *) * (nmax + 1));
751 ns < nmax && p != NULL;
770 const size_t nmax = ptrlist[ibe]->be_node_num_datasets; local
772 malloc(sizeof (be_dataset_list_t *) * (nmax + 1));
781 ns < nmax && p != NULL;
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport.c1166 uint_t nmax; local
1365 nmax = max < portq->portq_nent ? max : portq->portq_nent;
1384 kevp = kmem_alloc(eventsz * nmax, KM_NOSLEEP);
1386 if (nmax > pp->port_max_list)
1387 nmax = pp->port_max_list;
1388 kevp = kmem_alloc(eventsz * nmax, KM_SLEEP);
1392 for (nevents = 0; nevents < nmax; ) {
1426 kevp32 = kmem_alloc(eventsz * nmax, KM_NOSLEEP);
1428 if (nmax > pp->port_max_list)
1429 nmax
[all...]
/illumos-gate/usr/src/cmd/more/
H A Dmore.c218 static void ttyin(char buf[], register int nmax, char pchar);
1576 ttyin(char buf[], register int nmax, char pchar) argument
1590 while (sptr - buf < nmax) {
1664 if (sptr - buf >= nmax - 1)
/illumos-gate/usr/src/uts/i86pc/os/
H A Dcpuid.c1762 uint_t n, nmax; local
1774 if ((nmax = cpi->cpi_maxeax + 1) > NMAX_CPI_STD)
1775 nmax = NMAX_CPI_STD;
1779 for (n = 2, cp = &cpi->cpi_std[2]; n < nmax; n++, cp++) {
2074 if ((nmax = cpi->cpi_xmaxeax - 0x80000000 + 1) > NMAX_CPI_EXTD)
2075 nmax = NMAX_CPI_EXTD;
2081 for (n = 2, cp = &cpi->cpi_extd[2]; n < nmax; cp++, n++) {
/illumos-gate/usr/src/cmd/mdb/common/modules/libumem/
H A Dumem.c1014 size_t nmax = urpw->urpw_max ? (urpw->urpw_max << 1) : 1; local
1015 void **new = mdb_zalloc(nmax * sizeof (void *), UM_SLEEP);
1017 if (nmax > 1) {
1024 urpw->urpw_max = nmax;

Completed in 268 milliseconds