Searched refs:min (Results 1 - 25 of 1011) sorted by relevance

1234567891011>>

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.min_neg.d31 * Positive min() test using negative values
35 * NOTES: This is verifiable simple positive test of the min() function.
43 @ = min(0);
44 @ = min(-900);
H A Derr.D_PROTO_LEN.minnoarg.d31 * min() should not accept a call with no arguments
39 @a[1] = min();
H A Derr.D_PROTO_LEN.mintoomany.d32 * min() should not more than one argument
40 @a[1] = min(1, 2);
H A Derr.D_AGG_SCALAR.mintoofew.d32 * min() should not accept a non-scalar value
40 @a[pid] = min(probefunc);
H A Dtst.min.d31 * Positive min() test
35 * NOTES: This is verifiable simple positive test of the min() function.
49 @a = min(i);
/freebsd-9.3-release/sys/mips/include/
H A Dclockvar.h50 int min; /* minute (0 - 59) */ member in struct:tod_time
/freebsd-9.3-release/contrib/openpam/include/security/
H A Dopenpam_attr.h10 # define OPENPAM_GNUC_PREREQ(maj, min) \
11 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
13 # define OPENPAM_GNUC_PREREQ(maj, min) 0
/freebsd-9.3-release/contrib/ofed/libsdp/
H A Dlibsdp.conf21 log min-level 9 destination file libsdp.log
35 # log [destination stderr|syslog|file <path>] [min-level <1-9>]
48 # min-level - defines the verbosity of the log:
60 # log min-level 7 destination stderr
63 # log min-level 9 destination syslog
/freebsd-9.3-release/contrib/ntp/sntp/libopts/
H A Dintprops.h166 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \
168 ? (a) < (min) - (b) \
173 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \
176 : (a) < (min) + (b))
180 #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) \
181 ((min) < 0 \
189 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \
195 : (min) / (b) < (a)) \
199 ? (a) < (min) / (b) \
204 #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, ma
[all...]
/freebsd-9.3-release/tools/tools/crypto/
H A Dcryptostats.c45 uint64_t avg, min, max; local
50 min = 1000000000LL*ts->min.tv_sec + ts->min.tv_nsec;
52 printf("%16.16s: avg %6llu ns : min %6llu ns : max %7llu ns [%u samps]\n",
53 tag, avg, min, max, ts->count);
71 stats.cs_invoke.min.tv_sec = 10000;
72 stats.cs_done.min.tv_sec = 10000;
73 stats.cs_cb.min.tv_sec = 10000;
74 stats.cs_finis.min
[all...]
/freebsd-9.3-release/usr.sbin/rtadvd/
H A Dtimer_subr.c101 uint32_t min; local
105 min = s / 60;
108 hour = min / 60;
109 min = min % 60;
119 if (min > 0)
120 p += sprintf(p, "%" PRIu32 "m", min);
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dclocktime.c65 int32 y, tmp, idx, min; local
118 for (min = 1, idx = 0; idx < 3; idx++)
119 if (diff[idx] < diff[min])
120 min = idx;
122 *ts_ui = test[min];
123 *yearstart = ystt[min];
126 return diff[min] < CLOSETIME;
/freebsd-9.3-release/usr.bin/mklocale/
H A Dyacc.y148 $$->min = $1;
155 $$->min = $1;
162 $$->min = $2;
169 $$->min = $2;
178 $$->min = $2;
186 $$->min = $3;
194 $$->min = $2;
202 $$->min = $3;
322 for (i = list->min; i <= list->max; ++i) {
323 if (list->map + (i - list->min)) {
[all...]
H A Dldef.h43 int32_t min; member in struct:rune_list
/freebsd-9.3-release/cddl/contrib/opensolaris/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) {
195 min = -(1ULL << (8 * sz - 1));
204 if (val < min) {
236 uint64_t min, uint64_
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...]
/freebsd-9.3-release/sys/dev/random/
H A Drandomdev_soft.h82 #define RANDOM_CHECK_UINT(name, min, max) \
87 if (*(u_int *)(oidp->oid_arg1) <= (min)) \
88 *(u_int *)(oidp->oid_arg1) = (min); \
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMin.d49 @Minimus["speculate"] = min(i);
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dcolor.cpp41 min(const unsigned int a, const unsigned int b) function
146 Red = min(MAX_COLOR_VAL, r);
147 Green = min(MAX_COLOR_VAL, g);
148 Blue = min(MAX_COLOR_VAL, b);
157 Cyan = min(MAX_COLOR_VAL, c);
158 Magenta = min(MAX_COLOR_VAL, m);
159 Yellow = min(MAX_COLOR_VAL, y);
168 Cyan = min(MAX_COLOR_VAL, c);
169 Magenta = min(MAX_COLOR_VAL, m);
170 Yellow = min(MAX_COLOR_VA
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-vrp.c301 set_value_range (value_range_t *vr, enum value_range_type t, tree min, argument
310 gcc_assert (min && max);
312 if (INTEGRAL_TYPE_P (TREE_TYPE (min)) && t == VR_ANTI_RANGE)
313 gcc_assert (!vrp_val_is_min (min) || !vrp_val_is_max (max));
315 cmp = compare_values (min, max);
318 if (needs_overflow_infinity (TREE_TYPE (min)))
319 gcc_assert (!is_overflow_infinity (min)
324 gcc_assert (min == NULL_TREE && max == NULL_TREE);
331 vr->min = min;
1015 tree var, cond, limit, min, max, type; local
1316 tree min, max, anti_min, anti_max, real_min, real_max; local
1605 tree op0, op1, min, max; local
2000 tree min, max, op0; local
2478 tree init, step, chrec, tmin, tmax, min, max, type; local
3429 tree min = TYPE_MIN_VALUE (TREE_TYPE (val)); local
4642 tree min, max; local
5043 tree min = NULL; local
[all...]
/freebsd-9.3-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc.h11 int min[5], max; member in struct:__anon4016
/freebsd-9.3-release/lib/libufs/
H A Dinode.c52 ino_t min, max; local
62 min = disk->d_inomin;
73 if (inode >= min && inode < max)
77 disk->d_inomin = min = inode - (inode % INOPB(fs));
78 disk->d_inomax = max = min + INOPB(fs);
81 dp1 = &((struct ufs1_dinode *)inoblock)[inode - min];
86 dp2 = &((struct ufs2_dinode *)inoblock)[inode - min];
/freebsd-9.3-release/crypto/openssh/
H A Dkexgexc.c58 int min, max, nbits; local
67 min = DH_GRP_MIN;
73 min = DH_GRP_MIN;
76 packet_put_int(min);
81 min, nbits, max);
85 min, nbits, max);
100 if (BN_num_bits(p) < min || BN_num_bits(p) > max)
102 min, BN_num_bits(p), max);
169 min = max = -1;
179 min, nbit
[all...]
/freebsd-9.3-release/lib/libz/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
126 for (min = 1; min < max; min++)
127 if (count[min] != 0) break;
128 if (root < min) root = min;
202 len = min; /* starting code length */
235 min = fill; /* save offset to next table */
266 next += min; /* her
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_add.c109 int max, min, dif; local
122 min = b->top;
123 dif = max - min;
134 carry = bn_add_words(rp, ap, bp, min);
135 rp += min;
136 ap += min;
137 bp += min;
168 int max, min, dif; local
179 min = b->top;
180 dif = max - min;
[all...]
/freebsd-9.3-release/contrib/lukemftpd/libnetbsd/
H A Dstrsuftoll.c124 long long min, long long max)
129 result = strsuftollx(desc, val, min, max, errbuf, sizeof(errbuf));
142 long long min, long long max, char *ebuf, size_t ebuflen)
215 num *= strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen);
230 if (num < min) {
233 desc, (long long)num, (long long)min);
141 strsuftollx(const char *desc, const char *val, long long min, long long max, char *ebuf, size_t ebuflen) argument

Completed in 179 milliseconds

1234567891011>>