Home
last modified time | relevance | path

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

/aosp12/frameworks/base/tools/aapt2/link/
H A DTableMerger.cpp207 Value* src_value = src_config_value->value.get(); in MergeConfigValue() local
212 ResolveMergeCollision(override_styles_instead_of_overlaying, dst_value, src_value, pool); in MergeConfigValue()
214 collision_result = ResourceTable::ResolveValueCollision(dst_value, src_value); in MergeConfigValue()
223 context->GetDiagnostics()->Error(DiagMessage(src_value->GetSource()) in MergeConfigValue()
/aosp12/art/runtime/
H A 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()
/aosp12/art/libdexfile/dex/
H A 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()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_common.cc1168 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() local
1174 if (src_value == reinterpret_cast32<uint32_t>(o.Ptr())) { in AssignRegister()
1177 new_shadow_frame->SetVReg(dest_reg, src_value); in AssignRegister()