Searched refs:src_value (Results 1 – 2 of 2) sorted by relevance
734 static uint32_t ApplyMaskShifted(uint32_t src_value, uint32_t mask) { in ApplyMaskShifted() argument737 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()
463 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() local469 if (src_value == reinterpret_cast<uintptr_t>(o)) { in AssignRegister()472 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()