Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.cc845 const uintptr_t uint_src = reinterpret_cast<uintptr_t>(src); in ForwardObject() local
846 if (boot_image_.InSource(uint_src)) { in ForwardObject()
847 return reinterpret_cast<T*>(boot_image_.ToDest(uint_src)); in ForwardObject()
849 if (app_image_.InSource(uint_src)) { in ForwardObject()
850 return reinterpret_cast<T*>(app_image_.ToDest(uint_src)); in ForwardObject()
860 const uintptr_t uint_src = reinterpret_cast<uintptr_t>(src); in ForwardCode() local
861 if (boot_oat_.InSource(uint_src)) { in ForwardCode()
862 return reinterpret_cast<const void*>(boot_oat_.ToDest(uint_src)); in ForwardCode()
864 if (app_oat_.InSource(uint_src)) { in ForwardCode()
865 return reinterpret_cast<const void*>(app_oat_.ToDest(uint_src)); in ForwardCode()