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

1234567891011>>

/freebsd-11-stable/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-11-stable/contrib/unbound/compat/
H A Darc4random_uniform.c36 uint32_t r, min; local
42 min = -upper_bound % upper_bound;
52 if (r >= min)
/freebsd-11-stable/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-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/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-11-stable/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-11-stable/tools/tools/crypto/
H A Dcryptostats.c49 uint64_t avg, min, max; local
54 min = 1000000000LL*ts->min.tv_sec + ts->min.tv_nsec;
56 printf("%16.16s: avg %6llu ns : min %6llu ns : max %7llu ns [%u samps]\n",
57 tag, avg, min, max, ts->count);
75 stats.cs_invoke.min.tv_sec = 10000;
76 stats.cs_done.min.tv_sec = 10000;
77 stats.cs_cb.min.tv_sec = 10000;
78 stats.cs_finis.min
[all...]
/freebsd-11-stable/usr.sbin/rtadvd/
H A Dtimer_subr.c66 uint32_t min; local
70 min = s / 60;
73 hour = min / 60;
74 min = min % 60;
84 if (min > 0)
85 p += sprintf(p, "%" PRIu32 "m", min);
/freebsd-11-stable/contrib/ofed/librdmacm/
H A Dconfig.h3 #define min(a, b) ((a) > (b) ? (b) : (a)) macro
/freebsd-11-stable/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-11-stable/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...]
/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) {
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-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DDemangleConfig.h36 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) \
38 ((maj) << 20) + ((min) << 10) + (patch))
40 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) \
41 ((__GNUC__ << 20) + (__GNUC_MINOR__ << 10) >= ((maj) << 20) + ((min) << 10))
43 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) 0
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMin.d49 @Minimus["speculate"] = min(i);
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Ddelay.h69 usleep_range(unsigned long min, unsigned long max) argument
71 DELAY(min);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DRandomNumberGenerator.h46 static constexpr result_type min() { return generator_type::min(); } function in class:llvm::RandomNumberGenerator
/freebsd-11-stable/bin/sh/
H A Dmemalloc.c237 growstackblock(int min) argument
246 if (min < stacknleft)
247 min = stacknleft;
248 if ((unsigned int)min >=
251 min += stacknleft;
252 min += ALIGN(sizeof(struct stack_block));
254 while (newlen < min)
300 growstrstackblock(int n, int min) argument
302 growstackblock(min);
321 makestrspace(int min, cha argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/fuzzer/
H A DFuzzedDataProvider.h42 num_bytes = std::min(num_bytes, remaining_bytes_);
53 num_bytes = std::min(num_bytes, remaining_bytes_);
67 num_bytes = std::min(num_bytes, remaining_bytes_);
75 // Returns a number in the range [min, max] by consuming bytes from the
77 // range. If there's no input data left, always returns |min|. |min| must
79 template <typename T> T ConsumeIntegralInRange(T min, T max) { argument
83 if (min > max)
87 uint64_t range = static_cast<uint64_t>(max) - min;
108 return static_cast<T>(min
218 ConsumeFloatingPointInRange(T min, T max) argument
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/sys/amd64/vmm/intel/
H A Dept.h36 struct vmspace *ept_vmspace_alloc(vm_offset_t min, vm_offset_t max);

Completed in 295 milliseconds

1234567891011>>