Searched refs:new_object_size (Results 1 - 3 of 3) sorted by relevance

/art/runtime/mirror/
H A Dclass.h609 ALWAYS_INLINE void SetObjectSize(uint32_t new_object_size) REQUIRES_SHARED(Locks::mutator_lock_);
611 void SetObjectSizeAllocFastPath(uint32_t new_object_size) REQUIRES_SHARED(Locks::mutator_lock_);
617 void SetObjectSizeWithoutChecks(uint32_t new_object_size)
621 OFFSET_OF_OBJECT_MEMBER(Class, object_size_), new_object_size);
H A Dclass.cc1293 void Class::SetObjectSizeAllocFastPath(uint32_t new_object_size) { argument
1295 SetField32Volatile<true>(ObjectSizeAllocFastPathOffset(), new_object_size); local
1297 SetField32Volatile<false>(ObjectSizeAllocFastPathOffset(), new_object_size); local
H A Dclass-inl.h367 inline void Class::SetObjectSize(uint32_t new_object_size) { argument
370 return SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), new_object_size);

Completed in 4552 milliseconds