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

1234567891011>>

/freebsd-current/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.mintoomany.d32 * min() should not more than one argument
40 @a[1] = min(1, 2);
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_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-current/tools/test/stress2/lib/
H A Drandom_int.c43 int i, j, min, max, r; local
44 min = 100;
50 if (min > r)
51 min = r;
53 printf("Average is %d, min = %d, max = %d\n", j / 10000, min, max);
/freebsd-current/contrib/unbound/compat/
H A Darc4random_uniform.c36 uint32_t r, min; local
42 min = -upper_bound % upper_bound;
52 if (r >= min)
/freebsd-current/contrib/libfido2/fuzz/
H A Duniform_random.c36 uint32_t r, min; local
42 min = -upper_bound % upper_bound;
52 if (r >= min)
/freebsd-current/crypto/openssh/openbsd-compat/
H A Darc4random_uniform.c42 uint32_t r, min; local
48 min = -upper_bound % upper_bound;
58 if (r >= min)
/freebsd-current/lib/libc/gen/
H A Darc4random_uniform.c35 uint32_t r, min; local
41 min = -upper_bound % upper_bound;
51 if (r >= min)
/freebsd-current/sys/libkern/
H A Darc4random_uniform.c35 uint32_t r, min; local
41 min = -upper_bound % upper_bound;
51 if (r >= min)
/freebsd-current/contrib/bc/tests/bc/scripts/
H A Di2rand.bc19 min = min(a$, b$)
25 r >= min && r <= max
/freebsd-current/contrib/openpam/include/security/
H A Dopenpam_attr.h6 # define OPENPAM_GNUC_PREREQ(maj, min) \
7 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
9 # define OPENPAM_GNUC_PREREQ(maj, min) 0
/freebsd-current/sys/amd64/vmm/amd/
H A Dnpt.h33 struct vmspace *svm_npt_alloc(vm_offset_t min, vm_offset_t max);
/freebsd-current/lib/clang/
H A Dllvm.pre.mk5 LLVM_MIN_TBLGEN?= llvm-min-tblgen
/freebsd-current/contrib/bearssl/T0/
H A DTPointerExpr.cs30 int min, max; field in class:TPointerExpr
32 internal TPointerExpr(string expr, int min, int max) argument
35 this.min = min;
64 long rmin = (long)min + off;
/freebsd-current/contrib/unbound/contrib/ios/
H A Dsetenv_ios.sh64 # xxx-version-min=n lower. For example, Xcode 6 can use
65 # -miphoneos-version-min=5.
69 MIN_VER=-miphoneos-version-min=6
71 MIN_VER=-miphoneos-version-min=6
76 # MIN_VER=-miphoneos-version-min=6
77 MIN_VER=-miphonesimulator-version-min=6
80 # MIN_VER=-miphoneos-version-min=6
81 MIN_VER=-miphonesimulator-version-min=6
85 MIN_VER=-miphonesimulator-version-min=6
87 MIN_VER=-miphonesimulator-version-min
[all...]
/freebsd-current/tools/tools/crypto/
H A Dcryptostats.c47 uint64_t avg, min, max; local
52 min = 1000000000LL*ts->min.tv_sec + ts->min.tv_nsec;
54 printf("%16.16s: avg %6llu ns : min %6llu ns : max %7llu ns [%u samps]\n",
55 tag, avg, min, max, ts->count);
73 stats.cs_invoke.min.tv_sec = 10000;
74 stats.cs_done.min.tv_sec = 10000;
75 stats.cs_cb.min.tv_sec = 10000;
76 stats.cs_finis.min
[all...]
/freebsd-current/usr.sbin/rtadvd/
H A Dtimer_subr.c67 uint32_t min; local
71 min = s / 60;
74 hour = min / 60;
75 min = min % 60;
85 if (min > 0)
86 p += sprintf(p, "%" PRIu32 "m", min);
/freebsd-current/contrib/googletest/googlemock/src/
H A Dgmock-cardinalities.cc52 BetweenCardinalityImpl(int min, int max) argument
53 : min_(min >= 0 ? min : 0), max_(max >= min_ ? max : min_) {
55 if (min < 0) {
57 << "but is actually " << min << "."; local
63 } else if (min > max) {
65 << ") must be >= the invocation lower bound (" << min << ")."; local
147 // Creates a cardinality that allows between min and max calls.
148 GTEST_API_ Cardinality Between(int min, int max) { argument
149 return Cardinality(new BetweenCardinalityImpl(min, ma
[all...]
/freebsd-current/contrib/ofed/librdmacm/
H A Dconfig.h3 #define min(a, b) ((a) > (b) ? (b) : (a)) macro
/freebsd-current/tools/test/stress2/tools/
H A Dmaxvnodes.sh38 min=$((oldmx / 4))
41 sysctl kern.maxvnodes=`jot -r 1 $min $max` > /dev/null
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Ddelay.h67 usleep_range(unsigned long min, unsigned long max) argument
70 if (min == 0)
71 min = 1;
72 pause_sbt("lnxsleep", ustosbt(min), 0, C_HARDCLOCK);
/freebsd-current/usr.bin/clang/llvm-min-tblgen/
H A DMakefile2 PROG_CXX= llvm-min-tblgen
/freebsd-current/crypto/openssl/include/openssl/
H A Dopensslv.h67 # define OPENSSL_VERSION_PREREQ(maj,min) \
68 ((OPENSSL_VERSION_MAJOR << 16) + OPENSSL_VERSION_MINOR >= ((maj) << 16) + (min))

Completed in 187 milliseconds

1234567891011>>