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

/art/runtime/
H A Dparsed_options.cc87 if (val <= std::numeric_limits<size_t>::max() / mul) {
91 val = std::numeric_limits<size_t>::max() & ~(1024-1);
596 } else if (StartsWith(option, "-Xprofile-max-stack-depth:")) {
757 UsageMessage(stream, " -XmxN (max heap, must be multiple of 1K, >= 2MB)\n");
807 UsageMessage(stream, " -Xprofile-max-stack-depth:integervalue\n");
900 double min, double max, double* parsed_value) {
912 sane_val = iss.eof() && (value >= min) && (value <= max);
916 sane_val = *end == '\0' && value >= min && value <= max;
899 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
H A Ddex_file.cc722 // Note: Signed type is important for max and min.
724 int32_t max = code_item.tries_size_ - 1; local
726 while (min <= max) {
727 int32_t mid = min + ((max - min) / 2);
734 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);
/art/runtime/base/
H A Dbit_vector.cc250 // Difference until max, we know both accept it:
309 unsigned int max = storage_size_; local
310 for (int idx = max - 1; idx >= 0; idx--) {
/art/dex2oat/
H A Ddex2oat.cc172 UsageError(" --huge-method-max=<method-instruction-count>: the threshold size for a huge");
174 UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold);
177 UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge");
179 UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold);
182 UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large");
184 UsageError(" Example: --large-method-max=%d", CompilerOptions::kDefaultLargeMethodThreshold);
187 UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small");
189 UsageError(" Example: --small-method-max=%d", CompilerOptions::kDefaultSmallMethodThreshold);
192 UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny");
194 UsageError(" Example: --tiny-method-max
762 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
[all...]
/art/compiler/llvm/
H A Dgbc_expander.cc2711 int32_t max = dex_compilation_unit_->GetCodeItem()->tries_size_ - 1; local
2713 while (min <= max) {
2714 int32_t mid = min + (max - min) / 2;
2722 max = mid - 1;

Completed in 1425 milliseconds