HomeSort by relevance Sort by last modified time
    Searched refs:min (Results 1 - 25 of 697) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
tst.min_neg.d 31 * Positive min() test using negative values
35 * NOTES: This is verifiable simple positive test of the min() function.
43 @ = min(0);
44 @ = min(-900);
err.D_PROTO_LEN.minnoarg.d 31 * min() should not accept a call with no arguments
39 @a[1] = min();
err.D_PROTO_LEN.mintoomany.d 32 * min() should not more than one argument
40 @a[1] = min(1, 2);
err.D_AGG_SCALAR.mintoofew.d 32 * min() should not accept a non-scalar value
40 @a[pid] = min(probefunc);
tst.min.d 31 * Positive min() test
35 * NOTES: This is verifiable simple positive test of the min() function.
49 @a = min(i);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/t/
min.t 17 use List::Util qw(min);
21 print "not " unless defined &min;
24 print "not " unless min(9) == 9;
27 print "not " unless min(1,2) == 1;
30 print "not " unless min(2,1) == 1;
35 print "not " unless min(@a) == $b[0];
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/qualifier/
QualifierIntegerRange.java 41 protected int min; field in class:QualifierIntegerRange
53 * @param min
58 public QualifierIntegerRange(int min, int max) {
59 this.min = min;
70 return min;
89 if (i >= min && i <= max) {
98 return super.toString() + "<" + min + "," + max + ">";
  /onnv/onnv-gate/usr/src/cmd/lms/
version.h 39 #define _MAKE_VER_STRING(maj, min, submin, bld) #maj "." #min "." #submin "." #bld
40 #define MAKE_VER_STRING(maj, min, submin, bld) _MAKE_VER_STRING(maj, min, submin, bld)
  /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/
ratoi.c 12 int ratoi(ps, pi, min, max)
14 int *pi, min, max;
20 if (*pe != '\0' || i < min || i > max)
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
rand.t 46 my($max, $min, $sum); # Characteristics of rand
50 $max = $min = rand(1);
71 $min = $n if $n < $min;
86 # max=[$max] min=[$min]
104 print "# max=[$max] min=[$min]\n";
117 unless (ok( !($min < 0 or $max >= 1) )) { # Slightly redundant...
118 print "# min too low\n" if $min < 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
look.pl 14 local($max,$min,$mid,$_);
21 while ($max - $min > 1) {
22 $mid = int(($max + $min) / 2);
30 $min = $mid;
36 $min *= $blksize;
37 seek(FH,$min,0);
38 <FH> if $min;
44 $min = tell(FH);
46 seek(FH,$min,0);
47 $min;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4v/cpumem-retire/
cpumem-retire.conf 34 setprop cpu_ret_maxdelay 5min
37 setprop page_ret_maxdelay 5min
  /onnv/onnv-gate/usr/src/cmd/dtrace/demo/sched/
ticktime.d 32 @[cpu] = min(timestamp - last[cpu]);
  /onnv/onnv-gate/usr/src/cmd/sgs/libconv/common/
time.c 41 int hour, min; local
57 if ((min = sec / 60) != 0)
59 if ((hour = min / 60) != 0)
60 min = min % 60;
64 MSG_ORIG(MSG_TIME_HMSF), hour, min, sec, usec);
65 else if (min)
67 MSG_ORIG(MSG_TIME_MSF), min, sec, usec);
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
ISet.cxx 36 return r_[i].min <= x ? 1 : 0;
41 void ISet<T>::addRange(T min, T max)
44 if (min == 0)
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)) {
53 if (min < r_[i].min)
54 r_[i].min = min
    [all...]
ISetIter.h 19 // min and max are not changed if 0 is returned.
20 int next(T &min, T &max)
23 min = p_->r_[i_].min;
XcharMap.cxx 40 void XcharMap<T>::setRange(Char min, Char max, T val)
42 if (min <= max) {
44 ptr_[min] = val;
45 } while (min++ != max);
  /onnv/onnv-gate/usr/src/cmd/ssh/ssh/
gss-clnt.c 72 OM_uint32 maj, min; local
80 maj = gss_indicate_mechs(&min, &indicated);
86 maj = gss_create_empty_oid_set(&min, &supported);
88 errmsg = ssh_gssapi_last_error(NULL, &maj, &min);
91 (void) gss_release_oid_set(&min, &indicated);
94 maj = gss_acquire_cred(&min, GSS_C_NO_NAME, 0, indicated,
98 errmsg = ssh_gssapi_last_error(NULL, &maj, &min);
102 (void) gss_release_oid_set(&min, &indicated);
103 (void) gss_release_oid_set(&min, &supported);
106 (void) gss_release_cred(&min, &creds)
    [all...]
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
addr_order.c 32 #ifndef min
33 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
46 const int minlen = min(addr1->length, addr2->length);
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/sv/
sv_impl.h 90 #define SV_MAJOR_HASH(min) ((min) % SV_MAJOR_HASH_CNT)
93 #define SV_MINOR_HASH(min) ((min) % SV_MINOR_HASH_CNT)
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
init_color.c 49 static float MAX(float, float, float), MIN(float, float, float);
128 double max, min; local
133 min = MIN(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);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/modules/SUNW,SPARC-Enterprise/cpumem-retire/
cpumem-retire.conf 34 setprop page_ret_maxdelay 5min
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/cpumem-retire/
cpumem-retire.conf 35 setprop page_ret_maxdelay 5min
  /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Distribution.java 166 long min; // current bucket local
168 long[] range; // two element array: { min, max }
172 min = range[0];
174 bucket = new Distribution.Bucket(min, max, frequencies[i]);
209 long min = range[0]; local
212 if (bucket.getMin() != min) {
213 throw new IllegalArgumentException("bucket min " +
214 bucket.getMin() + " at index " + i + ", expected " + min);
351 * always one less than the min of the next bucket (or {@link
361 private final long min; field in class:Distribution.Bucket
541 int min = -1; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libuutil/common/
uu_strtoint.c 165 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) {
195 min = -(1ULL << (8 * sz - 1));
204 if (val < min) {
236 uint64_t min, uint64_t max
    [all...]

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>