Searched refs:src_value (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | method_handles.cc | 215 const JValue src_value(*value); in ConvertJValueCommon() local 228 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon() 242 Handle<mirror::Object> h_obj(hs.NewHandle(src_value.GetL())); in ConvertJValueCommon() 271 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, type, src_value, value))) { in ConvertJValueCommon() 277 ObjPtr<mirror::Object> boxed = BoxPrimitive(type, src_value); in ConvertJValueCommon() 285 ObjPtr<mirror::Object> from_obj(src_value.GetL()); in ConvertJValueCommon() 327 uint32_t src_value = caller_frame.GetVReg(src_reg); in CopyArgumentsFromCallerFrame() local 332 if (src_value == reinterpret_cast<uintptr_t>(o.Ptr())) { in CopyArgumentsFromCallerFrame() 335 callee_frame->SetVReg(dst_reg, src_value); in CopyArgumentsFromCallerFrame()
|
/art/dex2oat/linker/ |
D | image_writer.h | 601 void CopyAndFixupPointer(void** target, ValueType src_value, PointerSize pointer_size) 604 void CopyAndFixupPointer(void** target, ValueType src_value) 608 void* object, MemberOffset offset, ValueType src_value, PointerSize pointer_size) 611 void CopyAndFixupPointer(void* object, MemberOffset offset, ValueType src_value)
|
D | image_writer.cc | 3653 void** target, ValueType src_value, PointerSize pointer_size) { in CopyAndFixupPointer() argument 3654 DCHECK(src_value != nullptr); in CopyAndFixupPointer() 3655 void* new_value = NativeLocationInImage(src_value); in CopyAndFixupPointer() 3665 void ImageWriter::CopyAndFixupPointer(void** target, ValueType src_value) in CopyAndFixupPointer() argument 3667 CopyAndFixupPointer(target, src_value, target_ptr_size_); in CopyAndFixupPointer() 3672 void* object, MemberOffset offset, ValueType src_value, PointerSize pointer_size) { in CopyAndFixupPointer() argument 3675 return CopyAndFixupPointer(target, src_value, pointer_size); in CopyAndFixupPointer() 3679 void ImageWriter::CopyAndFixupPointer(void* object, MemberOffset offset, ValueType src_value) { in CopyAndFixupPointer() argument 3680 return CopyAndFixupPointer(object, offset, src_value, target_ptr_size_); in CopyAndFixupPointer()
|
/art/libdexfile/dex/ |
D | dex_file_verifier_test.cc | 663 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/ |
D | interpreter_common.cc | 1173 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() local 1179 if (src_value == reinterpret_cast32<uint32_t>(o.Ptr())) { in AssignRegister() 1182 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()
|