Searched refs:max (Results 1 - 25 of 717) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.max_neg.d31 * Positive max() test using negative values
35 * NOTES: This is verifiable simple positive test of the max() function.
43 @ = max(0);
44 @ = max(-900);
H A Derr.D_PROTO_LEN.maxnoarg.d31 * max() should not accept a call with no arguments
39 @a[1] = max();
H A Derr.D_PROTO_LEN.maxtoomany.d31 * max() should not more than one argument
39 @a[1] = max(1, 2);
H A Derr.D_AGG_SCALAR.maxnoarg.d32 * max() should not accept a non-scalar value
39 @a[pid] = max(probefunc);
H A Derr.D_AGG_REDEF.redef.d44 @a = max(0);
H A Dtst.forms.d43 @b = max(1);
45 @d[0] = max(1);
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/clauses/
H A Derr.D_IDENT_UNDEF.aggfun.d39 @a = max(x);
/opensolaris-onvv-gate/usr/src/uts/common/io/comstar/port/qlt/
H A Dqlt.conf28 #Name: PCI max read request override
30 #Usage: This field specifies the value to be used for the PCI max read
37 pci-max-read-request=2048;
39 #Name: PCI max payload override
41 #Usage: This field specifies the value to be used for the PCI max payload
45 #pcie-max-payload-size=1024;
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/t/
H A Dmax.t17 use List::Util qw(max);
21 print "not " unless defined &max;
24 print "not " unless max(1) == 1;
27 print "not " unless max(1,2) == 2;
30 print "not " unless max(2,1) == 2;
35 print "not " unless max(@a) == $b[-1];
/opensolaris-onvv-gate/usr/src/cmd/agents/snmp/snmprelayd/
H A Dsnmpdx.rsrc40 max-agent-timeout = 999999999
/opensolaris-onvv-gate/usr/src/uts/common/io/rsm/
H A Drsm.conf31 #The max-exported-memory property provides for setting an upper limit
37 max-exported-memory=0;
48 max-segments=65535;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/qualifier/
H A DQualifierIntegerRange.java46 protected int max; field in class:QualifierIntegerRange
55 * @param max
58 public QualifierIntegerRange(int min, int max) { argument
60 this.max = max;
80 return max;
89 if (i >= min && i <= max) {
98 return super.toString() + "<" + min + "," + max + ">";
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Drand.t46 my($max, $min, $sum); # Characteristics of rand
50 $max = $min = rand(1);
70 $max = $n if $n > $max;
84 unless (ok( !$max <= 0 or $max >= (2 ** $randbits))) {# Just in case...
86 # max=[$max] min=[$min]
100 $off = log($max) / log(2); # log2
104 print "# max
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ipf/lib/common/
H A Dratoi.c12 int ratoi(ps, pi, min, max)
14 int *pi, min, max;
20 if (*pe != '\0' || i < min || i > max)
/opensolaris-onvv-gate/usr/src/lib/libdscp/svc/
H A Ddscp.ppp.options66 lcp-max-configure 10
67 lcp-max-failure 10
68 lcp-max-terminate 3
81 ipcp-max-configure 10
82 ipcp-max-failure 10
83 ipcp-max-terminate 3
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/grammar/
H A Dtst.stmts.d50 @b = max(x);
52 @d[x] = max(x);
/opensolaris-onvv-gate/usr/src/lib/libcurses/screen/
H A Dinit_color.c128 double max, min; local
132 max = MAX(r, g, b);
137 l = (max + min) / 2;
141 if (max == min) {
146 s = (max - min) / (max + min);
148 s = (max - min) / (2 - max - min);
152 rc = (max - r) / (max
[all...]
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
H A DISet.cxx35 if (r_[i].max >= x)
41 void ISet<T>::addRange(T min, T max) argument
47 for (i = r_.size(); i > 0 && min - 1 <= r_[i - 1].max; i--)
50 // r_[i - 1].max < min - 1 <= r_[i].max
51 if (i < r_.size() && (r_[i].min == 0 || max >= r_[i].min - 1)) {
55 if (max > r_[i].max) {
56 r_[i].max = max;
[all...]
H A DISetIter.h19 // min and max are not changed if 0 is returned.
20 int next(T &min, T &max) argument
24 max = p_->r_[i_].max;
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Harness/t/
H A Dstrap-analyze.t39 max => 10,
77 max => 5,
109 max => 10,
127 max => 4,
145 max => 4,
163 max => 4,
183 max => 0,
200 max => 5,
218 max => 5,
240 max
[all...]
H A Dtest-harness.t38 max => 5,
54 max => 5,
72 max => 5,
88 max => 5,
106 max => 5,
122 max => 3,
138 max => 5,
154 max => 1,
171 max => 10,
189 max
[all...]
/opensolaris-onvv-gate/usr/src/lib/libslp/clib/
H A DSLPGetRefreshInterval.c50 int mr = 0; /* max results placeholder */
51 unsigned short max = 0; /* max interval result cookie */ local
79 &max, &collator, &mr);
83 &max, &collator, &mr);
91 return (max);
98 unsigned short *max = (unsigned short *)cookie; local
106 *max = 0;
119 if (anint > *max) {
120 *max
[all...]
/opensolaris-onvv-gate/usr/src/tools/gk/
H A Dgen_make.machines.sh35 max=$(((cpus + 1) * 2))
43 printf "script suggests\nsetting concurrency to $max for a single-user "
46 printf "$THISHOST max=$max\n" >> $HOME/.make.machines
47 printf "dmake concurrency for host $THISHOST set to $max.\n"
/opensolaris-onvv-gate/usr/src/uts/common/io/aac/
H A Daac.conf47 dma-max=0x20000;
/opensolaris-onvv-gate/usr/src/lib/libuutil/common/
H A Duu_strtoint.c165 int64_t min, int64_t max)
170 if (min > max)
175 if (max > INT8_MAX || min < INT8_MIN)
179 if (max > INT16_MAX || min < INT16_MIN)
183 if (max > INT32_MAX || min < INT32_MIN)
187 if (max > INT64_MAX || min < INT64_MIN)
194 if (min == 0 && max == 0) {
196 max = (1ULL << (8 * sz - 1)) - 1;
207 } else if (val > max) {
236 uint64_t min, uint64_t max)
164 uu_strtoint(const char *s, void *v, size_t sz, int base, int64_t min, int64_t max) argument
235 uu_strtouint(const char *s, void *v, size_t sz, int base, uint64_t min, uint64_t max) argument
[all...]

Completed in 99 milliseconds

1234567891011>>