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

/art/runtime/
H A Dparsed_options.cc755 UsageMessage(stream, " -XmsN (min heap, must be multiple of 1K, >= 1MB)\n");
899 double min, double max, double* parsed_value) {
911 sane_val = iss.eof() && (value >= min) && (value <= max);
915 sane_val = *end == '\0' && value >= min && value <= max;
898 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
H A Ddex_file.cc729 // Note: Signed type is important for max and min.
730 int32_t min = 0; local
733 while (min <= max) {
734 int32_t mid = min + ((max - min) / 2);
743 min = mid + 1;
/art/dex2oat/
H A Ddex2oat.cc772 double min, double max, double* parsed_value) {
782 sane_val = iss.eof() && (value >= min) && (value <= max);
786 sane_val = *end == '\0' && value >= min && value <= max;
771 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 128 milliseconds