Searched refs:max (Results 276 - 300 of 603) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/sys/
H A Dsystm.h72 extern pgcnt_t maxmem; /* max available memory (pages) */
153 #ifndef max
154 int max(int, int);
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPConfig.java411 double max = (double)getRandomWaitBound();
413 return (long)(max * r);
1392 * and <i>max</i>. If the sum of all timeouts is not within the range
1403 * false <i>min</i> and <i>max</i> are ignored.
1406 * @param max
1416 int max) {
1427 if (totalWait >= min && totalWait <= max) {
1436 averagedTimeout = max / timeouts.length;
1443 String.valueOf(max),
1412 capTimeouts(String property, int[] timeouts, boolean rangeCheck, int min, int max) argument
/illumos-gate/usr/src/cmd/mdb/common/modules/libumem/
H A Dleaky_subr.c888 size_t min, max, size; local
926 min = max = lkb->lkb_data;
933 if (size > max)
934 max = size;
940 if (min == max)
944 min, max);
/illumos-gate/usr/src/uts/sun4u/io/
H A Drmc_comm_dp.c732 int max; local
867 max = pkt->full_length - pkt->bufpos;
868 if (max > pkt->inbuflen)
869 max = pkt->inbuflen;
871 for (count = 0; count < max; count++)
889 if (count < max) {
1106 "mrecv process async msg len=%d, max=%d\n",
1140 "mrecv process reply len=%d, max=%d\n",
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_rsrc.c811 uint64_t num, max, num_prealloc; local
857 max = ((uint64_t)1 << devlim->log_max_mtt);
864 max = ((uint64_t)1 << devlim->log_max_dmpt);
871 max = ((uint64_t)1 << devlim->log_max_qp);
878 max = ((uint64_t)1 << devlim->log_max_cq);
885 max = ((uint64_t)1 << devlim->log_max_srq);
892 max = ((uint64_t)1 << devlim->log_max_eq);
921 entry_info.hwi_max = max;
954 max = ((uint64_t)1 << devlim->log_max_mcg);
965 entry_info.hwi_max = max;
[all...]
H A Dhermon_srq.c176 srq_wr_sz = max(sizes->srq_wr_sz + 1, HERMON_SRQ_MIN_SIZE);
625 size = max(size, HERMON_SRQ_MIN_SIZE);
972 * Use requested maximum SGL to calculate max descriptor size
983 log2 = max(log2, HERMON_QP_WQE_LOG_MINIMUM);
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_xml.c85 const char * const max_attr = "max";
1843 * The cardinality is specified by two attributes max and min at cursor.
1853 uint64_t max; local
1864 SCF_PROPERTY_TM_CARDINALITY_MAX, &max, &max_prop);
1868 if (max < min) {
1869 semerr(gettext("Cardinality max is less than min for "
2255 * Verify that the strings at min and max are valid numeric strings. Also
2256 * verify that max is numerically >= min.
2261 verify_range(entity_t *service, xmlNodePtr range, char *min, char *max) argument
2273 strings[RC_MAX] = max;
2335 char *max; local
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dm_cc.c54 int max; member in struct:__anon4222
62 if (sp->max <= sp->used)
83 string.max = n;
227 string.max = n;
246 if (string.used < string.max)
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Pg/
H A DPg.pm41 use List::Util qw(max sum);
467 return (max($self->{MAX_FREQUENCY}, $self->{CAPACITY}->{$shname}));
664 my $capacity = max($c2->{MAX_FREQUENCY}, $c2->{CAPACITY}->{$shname});
1160 my $max_freq = max(split(/:/, $freqs));
1290 my $max_rate = max($pg1->{util_rate_max}, $pg2->{util_rate_max});
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DObjective.java376 res.getLongProperty("pset.max"));
432 long max; field in class:WeightedLoadObjective.Calculation
454 * @param max The maximum qty of resource for this set
457 long min, long max)
462 this.max = max;
485 buf.append(" max: " + max);
456 Calculation(Resource res, List comp, double util, long min, long max) argument
H A DSystemSolver.java804 * type) whose size is < their max constraint.
814 long size, max;
820 max = res.getLongProperty(type+".max");
821 if (size < max)
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_values.c764 int max = 0; /* largest enum value seen so far */ local
780 max = value_entries[j].value > max ?
781 value_entries[j].value : max;
788 if (val > max)
/illumos-gate/usr/src/lib/libsqlite/src/
H A Ddate.c85 ** max maximum allowed value of the integer
97 int max; local
105 max = va_arg(ap, int);
116 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){
/illumos-gate/usr/src/common/mpi/
H A Dmp_gf2m.c565 * Up to max elements of the array will be filled. Return value is total
569 mp_bpoly2arr(const mp_int *a, unsigned int p[], int max) argument
577 for (k = 0; k < max; k++) p[k] = 0;
584 if (k < max) p[k] = MP_DIGIT_BIT * i + j;
/illumos-gate/usr/src/cmd/pgstat/
H A Dpgstat.pl34 use List::Util qw(first max min);
377 $maxlevel = max(@levels);
402 my $max_pg_len = length(max(@pgs)) + 1;
/illumos-gate/usr/src/cmd/csh/
H A Dsh.file.c216 max(a, b) function
293 maxwidth = max(maxwidth, tswidth(items[i]));
297 columns = max(78 / maxwidth, 1);
/illumos-gate/usr/src/cmd/mailx/
H A Dfio.c46 static int getln(char *line, int max, FILE *f);
377 getln(char *line, int max, FILE *f) argument
383 ecp = cp + max - 1;
/illumos-gate/usr/src/cmd/mdb/common/modules/ufs/
H A Dufs.c477 pbits(const uchar_t *cp, const int max, const int linelen) argument
483 for (i = 0; i < max; i++) {
487 while ((i + 1) < max && isset(cp, i+1))
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_fm.c423 size_t max = eip->zei_range_count; local
431 while (idx < max - 1) {
435 while (idx < max - 1) {
/illumos-gate/usr/src/tools/ctf/cvt/
H A Doutput.c116 iiburst_new(tdata_t *td, int max) argument
120 iiburst->iib_funcs = xcalloc(sizeof (iidesc_t *) * max);
122 iiburst->iib_objts = xcalloc(sizeof (iidesc_t *) * max);
/illumos-gate/usr/src/uts/common/crypto/core/
H A Dkcf_mech_tabs.c170 int i, max; local
256 max = kcf_mech_tabs_tab[class].met_size;
258 for (i = 0; i < max; i++) {
/illumos-gate/usr/src/uts/common/io/xge/hal/xgehal/
H A Dxgehal-fifo.c257 queue->max,
267 queue->initial, queue->max,
401 vBIT((hldev->config.fifo.queue[i].max-1),
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport.c119 * control: project:port-max-ids.
202 * control: process.port-max-events.
742 * the resource control: project.port-max-ids.
756 * the resource control: process.port-max-events.
884 * maximal allowed number of events. The max. number of events per port is
885 * defined by the resource control process.max-port-events.
1159 port_getn(port_t *pp, port_event_t *uevp, uint_t max, uint_t *nget, argument
1184 if (*nget > max && max > 0)
1189 if (max
[all...]
/illumos-gate/usr/src/uts/common/io/xge/drv/
H A Dxge.c290 device_config->ring.queue[index].max =
304 device_config->ring.queue[index].max =
437 device_config->fifo.queue[index].max = ddi_prop_get_int(DDI_DEV_T_ANY,
451 device_config->fifo.queue[index].max =
455 device_config->fifo.queue[index].max =
462 device_config->fifo.queue[index].max =
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_page.c866 int32_t max, i; local
891 max = hashp->hdr.bsize >> 2; /* divide by 4 bytes */
892 for (i = 0; i < max; i++)
906 int32_t i, max; local
922 max = hashp->hdr.bsize >> 2; /* divide by 4 bytes */
923 for (i = 0; i < max; i++)

Completed in 176 milliseconds

<<11121314151617181920>>