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

/art/runtime/
H A Ddex_file.cc634 // Note: Signed type is important for max and min.
636 int32_t max = code_item.tries_size_ - 1; local
638 while (min <= max) {
639 int32_t mid = min + ((max - min) / 2);
646 max = mid - 1;
/art/compiler/llvm/
H A Dgbc_expander.cc2720 int32_t max = dex_compilation_unit_->GetCodeItem()->tries_size_ - 1; local
2722 while (min <= max) {
2723 int32_t mid = min + (max - min) / 2;
2731 max = mid - 1;

Completed in 679 milliseconds