Searched defs:min (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dparsed_options.cc756 UsageMessage(stream, " -XmsN (min heap, must be multiple of 1K, >= 1MB)\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.
723 int32_t min = 0; local
726 while (min <= max) {
727 int32_t mid = min + ((max - min) / 2);
736 min = mid + 1;
/art/dex2oat/
H A Ddex2oat.cc763 double min, double max, double* parsed_value) {
773 sane_val = iss.eof() && (value >= min) && (value <= max);
777 sane_val = *end == '\0' && value >= min && value <= max;
762 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
/art/compiler/llvm/
H A Dgbc_expander.cc2710 int32_t min = 0; local
2713 while (min <= max) {
2714 int32_t mid = min + (max - min) / 2;
2724 min = mid + 1;

Completed in 455 milliseconds