Home
last modified time | relevance | path

Searched refs:src_value (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Ddex_file_verifier_test.cc734 static uint32_t ApplyMaskShifted(uint32_t src_value, uint32_t mask) { in ApplyMaskShifted() argument
737 while (src_value != 0) { in ApplyMaskShifted()
738 uint32_t index = CTZ(src_value); in ApplyMaskShifted()
739 if (((src_value & (1 << index)) != 0) && in ApplyMaskShifted()
743 src_value &= ~(1 << index); in ApplyMaskShifted()
/art/runtime/interpreter/
Dinterpreter_common.cc463 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() local
469 if (src_value == reinterpret_cast<uintptr_t>(o)) { in AssignRegister()
472 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()