Searched refs:lo (Results 1 - 6 of 6) 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.cc1677 RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1679 work_line_->SetRegisterTypeWide(inst->VRegA_21s(), lo, hi);
1684 RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1686 work_line_->SetRegisterTypeWide(inst->VRegA_31i(), lo, hi);
1691 RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1693 work_line_->SetRegisterTypeWide(inst->VRegA_51l(), lo, hi);
1698 RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true); local
1700 work_line_->SetRegisterTypeWide(inst->VRegA_21h(), lo, hi);
/art/runtime/
H A Dinstruction_set.h261 static inline TwoWordReturn GetTwoWordSuccessValue(uintptr_t hi, uintptr_t lo) { argument
262 uint32_t lo32 = static_cast<uint32_t>(lo);
269 uintptr_t lo; member in struct:art::TwoWordReturn
276 ret.lo = 0;
281 static inline TwoWordReturn GetTwoWordSuccessValue(uintptr_t hi, uintptr_t lo) { argument
283 ret.lo = lo;
H A Ddex_file.cc489 int32_t lo = 0; local
491 while (hi >= lo) {
492 int32_t mid = (hi + lo) / 2;
495 lo = mid + 1;
500 lo = mid + 1;
505 lo = mid + 1;
524 int32_t lo = 0; local
526 while (hi >= lo) {
527 int32_t mid = (hi + lo) / 2;
530 lo
553 int32_t lo = 0; local
572 int32_t lo = 0; local
591 int32_t lo = 0; local
610 int32_t lo = 0; local
[all...]
/art/runtime/interpreter/
H A Dinterpreter_common.h321 int lo = 0; local
323 while (lo <= hi) {
324 int mid = (lo + hi) / 2;
329 lo = mid + 1;
/art/compiler/dex/quick/arm/
H A Dtarget_arm.cc646 RegStorage lo = RegStorage::Solo32(RegStorage::kFloatingPoint | reg_num); local
648 MarkPreservedSingle(v_reg, lo);

Completed in 91 milliseconds