Searched refs:nmax (Results 1 - 13 of 13) sorted by relevance
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | string_decim.c | 36 string_to_decimal(ppc, nmax, fortran_conventions, pd, pform, pechar) 38 int nmax; 56 if (nread < nmax) \
|
H A D | file_decim.c | 36 file_to_decimal(ppc, nmax, fortran_conventions, pd, pform, pechar, pf, pnread) 38 int nmax; 59 if (nread < nmax) \ 68 if (nread < nmax) {
|
H A D | func_decim.c | 36 func_to_decimal(ppc, nmax, fortran_conventions, pd, pform, pechar, pget, pnread, punget) 38 int nmax; 60 if (nread < nmax) \ 69 if ((nread < nmax) && (punget != NULL)) {
|
H A D | char_to_decimal.h | 73 if ((nread >= nmax) && (CURRENT == NULL)) { /* Used up field width. */ 134 nmax++; /* 1083219 */ 147 nmax++; /* 1083219 */ 193 nmax++; /* 1083219 */ 198 nmax++; /* 1083219 */
|
/illumos-gate/usr/src/lib/libc/port/fp/ |
H A D | string_decim.c | 37 string_to_decimal(char **ppc, int nmax, int fortran_conventions, argument 49 if (nread < nmax) { \
|
H A D | func_decim.c | 37 func_to_decimal(char **ppc, int nmax, int fortran_conventions, argument 48 if (nread < nmax) { \
|
H A D | file_decim.c | 52 file_to_decimal(char **ppc, int nmax, int fortran_conventions, argument 63 if (nread < nmax) { \
|
/illumos-gate/usr/src/uts/common/fs/portfs/ |
H A D | port.c | 1166 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/lib/libbe/common/ |
H A D | be_list.c | 740 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/lib/libtecla/common/ |
H A D | cplfile.c | 778 int nmax = nammax < slen ? nammax : slen; local 783 namlen < nmax && (slen-namlen < FS_DIR_SEP_LEN ||
|
/illumos-gate/usr/src/cmd/more/ |
H A D | more.c | 218 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 D | cpuid.c | 1762 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 D | umem.c | 1014 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 120 milliseconds