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

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/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);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/
H A Derr.D_IDENT_UNDEF.aggfun.d39 @a = max(x);
/freebsd-11-stable/contrib/libstdc++/scripts/
H A Dgen_bind_includers.pl4 $max = shift @ARGV;
11 for ($num_args = 2; $num_args <= $max; ++$num_args) {
H A Dgen_includers2.pl4 $max = shift @ARGV;
11 for ($num_args = 2; $num_args <= $max; ++$num_args) {
H A Dgen_includers.pl4 $max = shift @ARGV;
26 for ($num_args = 2; $num_args <= $max; ++$num_args) {
54 if ($num_args == $max) {
114 if ($num_args == $max) {
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/grammar/
H A Dtst.stmts.d50 @b = max(x);
52 @d[x] = max(x);
/freebsd-11-stable/sys/amd64/vmm/amd/
H A Dnpt.h35 struct vmspace *svm_npt_alloc(vm_offset_t min, vm_offset_t max);
/freebsd-11-stable/lib/libc/gen/
H A Dgetbsize.c45 long n, max, mul, blocksize; local
64 max = MAXB / GB;
69 max = MAXB / KB;
74 max = MAXB / MB;
78 max = MAXB;
84 max = MAXB;
88 if (n > max) {
90 n = max;
/freebsd-11-stable/crypto/openssh/openbsd-compat/regress/
H A Dclosefromtest.c39 int i, max, fds[NUM_OPENS]; local
45 max = i - 1;
48 closefrom(fds[max]);
49 if (close(fds[max]) != -1)
53 for (i = 0; i < max; i++)
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dintprops.h166 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \
169 : (max) - (b) < (a))
173 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \
175 ? (max) + (b) < (a) \
180 #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) \
182 ? (a) < - (max) \
189 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \
192 ? (a) < (max) / (b) \
200 : (max) / (b) < (a)))
204 #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) \
[all...]
/freebsd-11-stable/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) {
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...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dquota.c30 isc_quota_init(isc_quota_t *quota, int max) { argument
31 quota->max = max;
40 quota->max = 0;
54 isc_quota_max(isc_quota_t *quota, int max) { argument
56 quota->max = max;
64 if (quota->max == 0 || quota->used < quota->max) {
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dquota.h53 int max; member in struct:isc_quota
59 isc_quota_init(isc_quota_t *quota, int max);
81 isc_quota_max(isc_quota_t *quota, int max);
/freebsd-11-stable/lib/libiconv_modules/BIG5/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=64
/freebsd-11-stable/lib/libiconv_modules/EUC/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=64
/freebsd-11-stable/lib/libiconv_modules/EUCTW/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=64
/freebsd-11-stable/lib/libiconv_modules/GBK2K/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=16
/freebsd-11-stable/lib/libiconv_modules/ISO2022/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=128
/freebsd-11-stable/lib/libiconv_modules/JOHAB/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=16
/freebsd-11-stable/lib/libiconv_modules/UES/
H A DMakefile5 CFLAGS.gcc+= --param max-inline-insns-single=64

Completed in 133 milliseconds

1234567891011>>