Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.cc680 const uintptr_t uint_src = reinterpret_cast<uintptr_t>(src); in ForwardObject() local
681 if (boot_image_.InSource(uint_src)) { in ForwardObject()
682 return reinterpret_cast<T*>(boot_image_.ToDest(uint_src)); in ForwardObject()
684 if (app_image_.InSource(uint_src)) { in ForwardObject()
685 return reinterpret_cast<T*>(app_image_.ToDest(uint_src)); in ForwardObject()
695 const uintptr_t uint_src = reinterpret_cast<uintptr_t>(src); in ForwardCode() local
696 if (boot_oat_.InSource(uint_src)) { in ForwardCode()
697 return reinterpret_cast<const void*>(boot_oat_.ToDest(uint_src)); in ForwardCode()
699 if (app_oat_.InSource(uint_src)) { in ForwardCode()
700 return reinterpret_cast<const void*>(app_oat_.ToDest(uint_src)); in ForwardCode()