Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass.h587 ALWAYS_INLINE void SetObjectSize(uint32_t new_object_size) REQUIRES_SHARED(Locks::mutator_lock_);
589 void SetObjectSizeAllocFastPath(uint32_t new_object_size) REQUIRES_SHARED(Locks::mutator_lock_);
594 void SetObjectSizeWithoutChecks(uint32_t new_object_size) in SetObjectSizeWithoutChecks() argument
598 OFFSET_OF_OBJECT_MEMBER(Class, object_size_), new_object_size); in SetObjectSizeWithoutChecks()
Dclass.cc1595 void Class::SetObjectSizeAllocFastPath(uint32_t new_object_size) { in SetObjectSizeAllocFastPath() argument
1597 SetField32Volatile<true>(ObjectSizeAllocFastPathOffset(), new_object_size); in SetObjectSizeAllocFastPath()
1599 SetField32Volatile<false>(ObjectSizeAllocFastPathOffset(), new_object_size); in SetObjectSizeAllocFastPath()
Dclass-inl.h409 inline void Class::SetObjectSize(uint32_t new_object_size) { in SetObjectSize() argument
412 return SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), new_object_size); in SetObjectSize()