Searched refs:max_value (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/gcc/
H A Dparams.c74 else if (compiler_params[i].max_value > compiler_params[i].min_value
75 && value > compiler_params[i].max_value)
78 compiler_params[i].max_value);
H A Dparams.h56 int max_value; member in struct:param_info
H A Dstmt.c2107 tree min_value, max_value;
2114 max_value = TYPE_MAX_VALUE (type);
2125 || (TREE_CODE (max_value) == INTEGER_CST
2126 && tree_int_cst_compare (low, max_value) > 0))
2136 || (TREE_CODE (max_value) == INTEGER_CST
2137 && tree_int_cst_compare (low, max_value) > 0))
2149 if (TREE_CODE (max_value) == INTEGER_CST
2150 && tree_int_cst_compare (high, max_value) > 0)
2151 high = max_value;
2093 tree min_value, max_value; local
H A Dstor-layout.c2030 tree max_value;
2035 max_value
2056 max_value
2068 TYPE_MAX_VALUE (type) = max_value;
2022 tree max_value; local
H A Dc-common.c1638 tree min_value, max_value;
1647 max_value = TYPE_MAX_VALUE (orig_type);
1658 if (tree_int_cst_compare (case_low, max_value) > 0
1659 && tree_int_cst_compare (case_high, max_value) > 0)
1675 if (tree_int_cst_compare (case_low, max_value) <= 0
1676 && tree_int_cst_compare (case_high, max_value) > 0)
1680 case_high = max_value;
1633 tree min_value, max_value; local
/freebsd-11-stable/contrib/dialog/
H A Drangebox.c49 int max_value; member in struct:__anon954
96 if ((check <= (long) data->max_value) &&
117 int ranges = (data->max_value + 1 - data->min_value);
176 int max_value,
225 if (max_value < min_value)
226 max_value = min_value;
227 if (cur_value > max_value)
228 cur_value = max_value;
253 data.max_value = max_value;
171 dialog_rangebox(const char *title, const char *cprompt, int height, int width, int min_value, int max_value, int default_value) argument
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_sprite.c183 I915_WRITE(SPRKEYMAX(intel_plane->pipe), key->max_value);
210 key->max_value = I915_READ(SPRKEYMAX(intel_plane->pipe));
373 I915_WRITE(DVSKEYMAX(intel_plane->pipe), key->max_value);
400 key->max_value = I915_READ(DVSKEYMAX(intel_plane->pipe));
H A Dintel_sdvo_regs.h566 u8 max_value; member in struct:sdvo_max_backlight_reply
633 u16 max_value; member in struct:intel_sdvo_enhancement_limits_reply
H A Di915_drm.h939 __u32 max_value; member in struct:drm_intel_sprite_colorkey
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_sched.cpp321 *pupper = traits_t<T>::max_value;
533 *pupperDist = traits_t<T>::max_value;
601 *pupper = traits_t<T>::max_value;
747 *p_ub = traits_t<T>::max_value;
H A Dkmp_os.h230 static const signed_t max_value = 0x7fffffff; member in struct:traits_t
240 static const unsigned_t max_value = 0xffffffff; member in struct:traits_t
258 static const signed_t max_value = 0x7fffffffffffffffLL; member in struct:traits_t
268 static const unsigned_t max_value = 0xffffffffffffffffLL; member in struct:traits_t
H A Dkmp_dispatch.cpp2241 *pupper = traits_t<T>::max_value;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_primary64.h323 // counter's max_value. Ctor will try to allocate the required buffer via
328 // is not incremented past max_value.
332 PackedCounterArray(u64 num_counters, u64 max_value, MemoryMapperT *mapper) argument
335 CHECK_GT(max_value, 0);
340 RoundUpToPowerOfTwo(MostSignificantSetBitIndex(max_value) + 1);
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c1424 float max_value; local
1444 max_value = 0.0;
1448 if (max_value < value) max_value = value;
1454 if (value >= max_value * shoulder_factor)
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dwmm_ac.c380 #define PARAM_IN_RANGE(field, min_value, max_value) \
381 param_in_range(#field, params->field, min_value, max_value)
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_subnet.c279 IN char *p_key, uint32_t max_value)
292 if (tmp_val > max_value ||
301 IN char *p_key, uint64_t max_value)
314 if (tmp_val > max_value || (tmp_val == ULLONG_MAX && errno == ERANGE)) {
278 opts_strtoul(uint32_t *val, IN char *p_val_str, IN char *p_key, uint32_t max_value) argument
300 opts_strtoull(uint64_t *val, IN char *p_val_str, IN char *p_key, uint64_t max_value) argument
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmdebugread.c872 long max_value;
903 max_value = 0;
963 if (tsym.value > max_value)
964 max_value = tsym.value;
1047 if (nfields > 1 && max_value == 0)
865 long max_value; local

Completed in 399 milliseconds