Searched refs:lo (Results 1 - 5 of 5) sorted by relevance

/art/runtime/verifier/
H A Ddex_gc_map.cc35 int lo = 0; local
37 while (hi >= lo) {
38 int mid = (hi + lo) / 2;
41 lo = mid + 1;
H A Dmethod_verifier.cc1619 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1621 work_line_->SetRegisterTypeWide(inst->VRegA_21s(), lo, hi);
1626 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1628 work_line_->SetRegisterTypeWide(inst->VRegA_31i(), lo, hi);
1633 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1635 work_line_->SetRegisterTypeWide(inst->VRegA_51l(), lo, hi);
1640 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1642 work_line_->SetRegisterTypeWide(inst->VRegA_21h(), lo, hi);
/art/runtime/
H A Ddex_file.cc375 int32_t lo = 0; local
377 while (hi >= lo) {
378 int32_t mid = (hi + lo) / 2;
381 lo = mid + 1;
386 lo = mid + 1;
391 lo = mid + 1;
410 int32_t lo = 0; local
412 while (hi >= lo) {
413 int32_t mid = (hi + lo) / 2;
416 lo
439 int32_t lo = 0; local
459 int32_t lo = 0; local
479 int32_t lo = 0; local
497 int32_t lo = 0; local
[all...]
H A Ddebugger.cc2107 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg); local
2109 uint64_t longVal = (hi << 32) | lo;
2110 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2117 uint32_t lo = GetVReg(m, reg, kLongLoVReg); local
2119 uint64_t longVal = (hi << 32) | lo;
2120 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
/art/runtime/interpreter/
H A Dinterpreter.cc991 int lo = 0; local
993 while (lo <= hi) {
994 int mid = (lo + hi) / 2;
999 lo = mid + 1;

Completed in 7804 milliseconds