Home
last modified time | relevance | path

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

/art/runtime/
Dmethod_handles.cc210 const JValue src_value(*value); in ConvertJValueCommon() local
223 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon()
237 Handle<mirror::Object> h_obj(hs.NewHandle(src_value.GetL())); in ConvertJValueCommon()
266 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, type, src_value, value))) { in ConvertJValueCommon()
272 ObjPtr<mirror::Object> boxed = BoxPrimitive(type, src_value); in ConvertJValueCommon()
280 ObjPtr<mirror::Object> from_obj(src_value.GetL()); in ConvertJValueCommon()
322 uint32_t src_value = caller_frame.GetVReg(src_reg); in CopyArgumentsFromCallerFrame() local
327 if (src_value == reinterpret_cast<uintptr_t>(o.Ptr())) { in CopyArgumentsFromCallerFrame()
330 callee_frame->SetVReg(dst_reg, src_value); in CopyArgumentsFromCallerFrame()
/art/libdexfile/dex/
Ddex_file_verifier_test.cc663 static uint32_t ApplyMaskShifted(uint32_t src_value, uint32_t mask) { in ApplyMaskShifted() argument
666 while (src_value != 0) { in ApplyMaskShifted()
667 uint32_t index = CTZ(src_value); in ApplyMaskShifted()
668 if (((src_value & (1 << index)) != 0) && in ApplyMaskShifted()
672 src_value &= ~(1 << index); in ApplyMaskShifted()
/art/runtime/interpreter/
Dinterpreter_common.cc1172 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() local
1178 if (src_value == reinterpret_cast32<uint32_t>(o.Ptr())) { in AssignRegister()
1181 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()