Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass.h523 ALWAYS_INLINE void SetObjectSize(uint32_t new_object_size) REQUIRES_SHARED(Locks::mutator_lock_);
525 void SetObjectSizeAllocFastPath(uint32_t new_object_size) REQUIRES_SHARED(Locks::mutator_lock_);
530 void SetObjectSizeWithoutChecks(uint32_t new_object_size) in SetObjectSizeWithoutChecks() argument
534 OFFSET_OF_OBJECT_MEMBER(Class, object_size_), new_object_size); in SetObjectSizeWithoutChecks()
Dclass.cc1470 void Class::SetObjectSizeAllocFastPath(uint32_t new_object_size) { in SetObjectSizeAllocFastPath() argument
1472 SetField32Volatile<true>(ObjectSizeAllocFastPathOffset(), new_object_size); in SetObjectSizeAllocFastPath()
1474 SetField32Volatile<false>(ObjectSizeAllocFastPathOffset(), new_object_size); in SetObjectSizeAllocFastPath()
Dclass-inl.h403 inline void Class::SetObjectSize(uint32_t new_object_size) { in SetObjectSize() argument
406 return SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), new_object_size); in SetObjectSize()