Searched refs:src_value (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | method_handles.cc | 206 const JValue src_value(*value); in ConvertJValueCommon() local 219 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon() 233 Handle<mirror::Object> h_obj(hs.NewHandle(src_value.GetL())); in ConvertJValueCommon() 262 if (!ConvertPrimitiveValueNoThrow(from_type, type, src_value, value)) { in ConvertJValueCommon() 268 ObjPtr<mirror::Object> boxed = BoxPrimitive(type, src_value); in ConvertJValueCommon() 276 ObjPtr<mirror::Object> from_obj(src_value.GetL()); in ConvertJValueCommon() 314 uint32_t src_value = caller_frame.GetVReg(src_reg); in CopyArgumentsFromCallerFrame() local 319 if (src_value == reinterpret_cast<uintptr_t>(o.Ptr())) { in CopyArgumentsFromCallerFrame() 322 callee_frame->SetVReg(dst_reg, src_value); in CopyArgumentsFromCallerFrame()
|
D | dex_file_verifier_test.cc | 666 static uint32_t ApplyMaskShifted(uint32_t src_value, uint32_t mask) { in ApplyMaskShifted() argument 669 while (src_value != 0) { in ApplyMaskShifted() 670 uint32_t index = CTZ(src_value); in ApplyMaskShifted() 671 if (((src_value & (1 << index)) != 0) && in ApplyMaskShifted() 675 src_value &= ~(1 << index); in ApplyMaskShifted()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 517 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() local 523 if (src_value == reinterpret_cast<uintptr_t>(o.Ptr())) { in AssignRegister() 526 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()
|