Searched defs:max (Results 1 - 8 of 8) sorted by relevance

/art/test/133-static-invoke-super/src/
H A DMain.java12 public void testDirect(int max) { argument
13 for (int i = 0; i < max; ++i) {
14 getVarDirect(max);
17 public void testStatic(int max) { argument
18 for (int i = 0; i < max; ++i) {
19 getVar(max);
/art/cmdline/
H A Dcmdline_parse_result.h70 // which is printed from the actual/min/max values.
74 const T& max) {
78 ", max: " + art::detail::ToStringAny(max));
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
125 argument_info_.max_ = max;
H A Dcmdline_types.h241 if (val <= std::numeric_limits<size_t>::max() / mul) {
245 val = std::numeric_limits<size_t>::max() & ~(1024-1);
299 || result > std::numeric_limits<unsigned int>::max() || result < 0) {
647 // The max depth of the stack collected by the profiler
719 T max) {
723 if (value < min || value > max) {
724 CmdlineParseResult<T> out_of_range = CmdlineParseResult<T>::OutOfRange(value, min, max);
824 } else if (StartsWith(option, "max-stack-depth:")) {
715 ParseIntoRangeCheck(TestProfilerOptions& options, T TestProfilerOptions::*pField, CmdlineParseResult<T>&& result, T min, T max) argument
/art/runtime/base/
H A Dbit_vector.cc223 // Difference until max, we know both accept it:
258 storage_[idx] = std::numeric_limits<uint32_t>::max();
275 unsigned int max = storage_size_; local
276 for (int idx = max - 1; idx >= 0; idx--) {
/art/dex2oat/
H A Ddex2oat.cc256 UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge");
258 UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold);
261 UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large");
263 UsageError(" Example: --large-method-max=%d", CompilerOptions::kDefaultLargeMethodThreshold);
266 UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small");
268 UsageError(" Example: --small-method-max=%d", CompilerOptions::kDefaultSmallMethodThreshold);
271 UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny");
273 UsageError(" Example: --tiny-method-max=%d", CompilerOptions::kDefaultTinyMethodThreshold);
290 UsageError(" --inline-max-code-units=<code-units-count>: the maximum code units that a method");
294 UsageError(" Example: --inline-max
457 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
[all...]
/art/runtime/
H A Ddex_file.cc368 if (i == std::numeric_limits<size_t>::max()) {
507 // Are we the ones moving the miss count past the max? Sanity check the index doesn't exist.
781 // Note: Signed type is important for max and min.
783 int32_t max = code_item.tries_size_ - 1; local
785 while (min <= max) {
786 int32_t mid = min + ((max - min) / 2);
793 max = mid - 1;
H A Ddex_file_verifier.cc182 uintptr_t max = 0 - 1; local
183 size_t available_bytes_till_end_of_mem = max - reinterpret_cast<uintptr_t>(start);

Completed in 614 milliseconds