Searched defs:min (Results 1 - 8 of 8) sorted by last modified time

/art/runtime/
H A Ddex_file.cc816 // Note: Signed type is important for max and min.
817 int32_t min = 0; local
820 while (min <= max) {
821 int32_t mid = min + ((max - min) / 2);
830 min = mid + 1;
H A Dutils.cc1866 double min,
1879 sane_val = iss.eof() && (value >= min) && (value <= max);
1883 sane_val = *end == '\0' && value >= min && value <= max;
1864 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value, UsageFn Usage) argument
H A Dutils.h73 if (result < std::numeric_limits<T>::min() || std::numeric_limits<T>::max() < result) {
103 // std::abs has undefined behavior on min limits.
104 DCHECK_NE(value, std::numeric_limits<T>::min());
109 return (value == std::numeric_limits<T>::min())
370 double min,
378 static constexpr uint32_t min() { return std::numeric_limits<uint32_t>::min(); } function in struct:art::Arc4RandomGenerator
388 T GetRandomNumber(T min, T max) { argument
389 CHECK_LT(min, max);
390 std::uniform_int_distribution<T> dist(min, ma
[all...]
/art/cmdline/
H A Dcmdline_parse_result.h70 // which is printed from the actual/min/max values.
73 const T& min,
77 ", min: " + art::detail::ToStringAny(min) +
72 OutOfRange(const T& value, const T& min, const T& max) argument
H A Dcmdline_parser.h122 ArgumentBuilder<TArg>& WithRange(const TArg& min, const TArg& max) { argument
124 argument_info_.min_ = min;
H A Dcmdline_types.h299 result < std::numeric_limits<int>::min()
729 T min,
734 if (value < min || value > max) {
735 CmdlineParseResult<T> out_of_range = CmdlineParseResult<T>::OutOfRange(value, min, max);
726 ParseIntoRangeCheck(TestProfilerOptions& options, T TestProfilerOptions::*pField, CmdlineParseResult<T>&& result, T min, T max) argument
/art/compiler/optimizing/
H A Dinduction_var_analysis.cc156 low = std::min(low, VisitDescendant(loop, instruction->InputAt(i)));
755 const int64_t min = Primitive::MinValueOfIntegralType(type); local
767 (IsAtLeast(upper_expr, &value) && value >= (min - stride_value - 1));
769 return (IsAtLeast(upper_expr, &value) && value >= (min - stride_value));
781 int64_t min = Primitive::MinValueOfIntegralType(type); local
789 min++;
795 return IsAtLeast(lower_expr, &value) && value >= min &&
797 IsAtLeast(upper_expr, &value) && value >= min &&
H A Dinduction_var_range.cc25 return std::numeric_limits<int32_t>::min() <= c && c <= std::numeric_limits<int32_t>::max();
86 const int32_t min = Primitive::MinValueOfIntegralType(type); local
88 return (v.is_known && v.a_constant == 0 && min <= v.b_constant && v.b_constant <= max)
304 // min a * (TC - 1) + OFFSET for a == -1 and TC = OFFSET - UPPER) to avoid losing information
576 is_min ? std::min(v1.b_constant, v2.b_constant)

Completed in 145 milliseconds