Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dbump_pointer_space.h132 const uint8_t* byte_obj = reinterpret_cast<const uint8_t*>(obj); in Contains() local
133 return byte_obj >= Begin() && byte_obj < End(); in Contains()
Dlarge_object_space.h101 const uint8_t* byte_obj = reinterpret_cast<const uint8_t*>(obj); in Contains() local
102 return Begin() <= byte_obj && byte_obj < End(); in Contains()
Dregion_space.h204 const uint8_t* byte_obj = reinterpret_cast<const uint8_t*>(obj); in Contains() local
205 return byte_obj >= Begin() && byte_obj < Limit(); in Contains()