Searched refs:max (Results 26 - 50 of 717) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/lib/libc/port/i18n/
H A Dwmemcpy.c41 size_t max = SIZE_MAX / sizeof (wchar_t); local
43 if (n <= max) {
51 if (n > max) {
52 len = max;
H A Dwmemmove.c40 size_t max = SIZE_MAX / sizeof (wchar_t); local
42 if (n <= max) {
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.max.d31 * Positive max() test
35 * NOTES: This is verifiable simple positive test of the max() function.
49 @a = max(i);
H A Dtst.multiaggs1.d48 @a[pid] = max(new_time);
54 @g[timestamp] = max(new_time);
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Ddie_exit.t43 my $max = keys %tests;
45 print "1..$max\n";
50 foreach my $test (1 .. $max) {
H A Dreaddir.t27 my ($min, $max) = (115, 135);
28 if (@D > $min && @D < $max) { print "ok 2\n"; }
30 printf "not ok 2 # counting op/*.t, expect $min < %d < $max files\n",
/opensolaris-onvv-gate/usr/src/ucbcmd/tr/
H A Dtr.c52 struct string { int last, max; char *p; } string1, string2; member in struct:string
64 string1.max = string2.max = 0;
138 if(s->max) {
139 if(s->last++ < s->max)
141 s->max = s->last = 0;
145 s->max = nextc(s);
146 if(s->max==0) {
150 if(s->max < s->last) {
151 s->last = s->max
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Harness/t/
H A Dstrap.t66 ok( (!grep { exists $strap->{$_} } qw(max todo skip_all)),
67 " max, todo and skip_all are not set" );
71 my @attribs = qw(max skip_all todo);
73 '1..2' => { max => 2 },
74 '1..1' => { max => 1 },
75 '1..0' => { max => 0,
78 '1..0 # Skipped: no leverage found' => { max => 0,
81 '1..4 # Skipped: no leverage found' => { max => 4,
84 '1..0 # skip skip skip because' => { max => 0,
87 '1..10 todo 2 4 10' => { max
[all...]
/opensolaris-onvv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DDistribution.java167 long max; // next bucket minus one
168 long[] range; // two element array: { min, max }
173 max = range[1];
174 bucket = new Distribution.Bucket(min, max, frequencies[i]);
210 long max = range[1];
216 if (bucket.getMax() != max) {
217 throw new IllegalArgumentException("bucket max " +
218 bucket.getMax() + " at index " + i + ", expected " + max);
350 * Distribution} are consecutive, such that the max of one bucket is
363 private final long max; field in class:Distribution.Bucket
[all...]
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMaxConsumers.java58 int max = (property == null ? 0 : property);
59 int n = (property == null ? 11 : (max < 1 ? 1 : max));
82 if (max > 0) {
83 System.out.println("Error: " + (max + 1) + " > " +
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dlook.pl14 local($max,$min,$mid,$_);
20 $max = int($size / $blksize);
21 while ($max - $min > 1) {
22 $mid = int(($max + $min) / 2);
33 $max = $mid;
/opensolaris-onvv-gate/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_parse.c47 int value, int min, int max)
49 if (value < min || value > max) {
52 facility, cachename, value, min, max);
46 cachemgr_set_integer(int *addr, char *facility, char *cachename, int value, int min, int max) argument
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
H A DXcharMap.cxx40 void XcharMap<T>::setRange(Char min, Char max, T val) argument
42 if (min <= max) {
45 } while (min++ != max);
/opensolaris-onvv-gate/usr/src/lib/libbc/libc/gen/common/
H A Dqsort.c59 char *min, *max; local
67 max = base + n * qsz;
69 qst(base, max);
72 hi = max;
98 for (min = base; (hi = min += qsz) < max; ) {
128 qst(char *base, char *max) argument
137 * current partition. (Which should be max - base).
140 * If max is larger than that guy, then it's that guy, else compare
141 * max with loser of first and take larger. Things are set up to
144 lo = max
[all...]
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMax.d49 @Maximus["speculate"] = max(i);
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
H A DCharsetInfo.cxx53 Char max; local
54 Unsigned32 n = inverse_.getRange(univMin, max);
55 if (max > univMax)
56 max = univMax;
58 inverse_.setRange(univMin, max, diff);
60 inverse_.setRange(univMin, max, Unsigned32(-2));
61 if (max == univMax)
63 univMin = max + 1;
H A DUnivCharsetDesc.cxx32 Char max; local
34 max = charMax;
36 max = r.descMin + (r.count - 1);
37 if (max - r.descMin > univCharMax
38 || r.univMin > univCharMax - (max - r.descMin))
39 max = r.descMin + (univCharMax - r.univMin);
40 addRange(r.descMin, max, r.univMin);
49 Char max = descMax > charMax ? charMax : descMax; local
50 charMap_.setRange(descMin, max, wrapChar(univMin, descMin));
80 WideChar max
[all...]
/opensolaris-onvv-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dcache.c66 int i, max, rc; local
91 max = GRABSIZE;
94 if ( i == (max - 1) ) {
95 max += GRABSIZE;
97 sizeof(LDAPMod *) * max );
130 if ( i == (max - 1) ) {
131 max++;
133 sizeof(LDAPMod *) * max );
/opensolaris-onvv-gate/usr/src/uts/sun4u/montecarlo/io/
H A Dttymux.conf33 sm-max-units = 6; # max no. of linked lower streams.
/opensolaris-onvv-gate/usr/src/cmd/ssh/libssh/common/
H A Dkexgexs.c52 int min = -1, max = -1, nbits = -1, type; local
66 max = packet_get_int();
68 max = MIN(DH_GRP_MAX, max);
74 max = DH_GRP_MAX;
82 if (max < min || nbits < min || max < nbits)
84 min, nbits, max);
87 dh = choose_dh(min, nbits, max);
143 min = max
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/des/
H A Ddes_opts.c426 double d,tm[16],max=0; local
506 max=tm[0];
510 if (max < tm[1]) { max=tm[1]; max_idx=1; }
513 if (max < tm[2]) { max=tm[2]; max_idx=2; }
518 if (max < tm[3]) { max=tm[3]; max_idx=3; }
521 if (max < tm[4]) { max
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Attribute/Handlers/demo/
H A Ddemo4.pl4 : Purpose(to store max storage capacity for files)
/opensolaris-onvv-gate/usr/src/cmd/sgs/libelf/misc/
H A DString.h37 int start,end,max; member in struct:__anon1834
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Ddnsglue.h132 #define INCR_OK(base, max, ptr, incr) \
133 ((incr) <= (max) - ((const unsigned char *)(ptr) \
145 #define SAFE_GETUINT16(base, max, ptr, incr, s, label) \
147 if (!INCR_OK(base, max, ptr, incr)) goto label; \
/opensolaris-onvv-gate/usr/src/cmd/powertop/common/
H A Dutil.c88 int max, cpus_conf; local
91 max = sysconf(_SC_CPUID_MAX);
95 if (max == -1 || cpus_conf == -1) {
96 max = cpus_conf = 1;
102 for (cpuid = 0; cpuid < max; cpuid++) {

Completed in 188 milliseconds

1234567891011>>