/art/runtime/ |
D | jobject_comparator.cc | 47 const size_t count1 = obj1->SizeOf(); in operator ()() 48 const size_t count2 = obj2->SizeOf(); in operator ()()
|
D | reference_table.cc | 146 const size_t size1 = obj1->SizeOf(); in Dump() 147 const size_t size2 = obj2->SizeOf(); in Dump() 181 size_t size = ref->SizeOf(); in Dump()
|
D | handle_scope-inl.h | 61 inline size_t HandleScope::SizeOf(uint32_t num_references) { in SizeOf() function 67 inline size_t HandleScope::SizeOf(PointerSize pointer_size, uint32_t num_references) { in SizeOf() function
|
D | handle_scope.h | 100 static size_t SizeOf(uint32_t num_references); 103 static size_t SizeOf(PointerSize pointer_size, uint32_t num_references);
|
D | image.cc | 161 pos += RoundUp(object->SizeOf(), kObjectAlignment); in VisitObjects()
|
/art/runtime/openjdkjvmti/ |
D | ti_object.cc | 54 *size_ptr = object->SizeOf(); in GetObjectSize()
|
D | ti_heap.cc | 100 obj->SizeOf(), in ReportString() 145 obj->SizeOf(), in ReportPrimitiveArray() 166 obj->SizeOf(), in ReportPrimitiveArray() 700 jlong size = obj->SizeOf(); in DoIterateThroughHeap() 1235 const jlong size = static_cast<jlong>(referree->SizeOf()); in ReportReference()
|
/art/runtime/gc/space/ |
D | bump_pointer_space.cc | 92 const uintptr_t position = reinterpret_cast<uintptr_t>(obj) + obj->SizeOf(); in GetNextObject() 223 size_t num_bytes = obj->SizeOf(); in AllocationSizeNonvirtual()
|
D | memory_tool_malloc_space-inl.h | 74 return obj->SizeOf<kVerifyNone>(); in GetObjSizeNoThreadSafety()
|
D | region_space-inl.h | 235 const uintptr_t position = reinterpret_cast<uintptr_t>(obj) + obj->SizeOf(); in GetNextObject()
|
/art/runtime/mirror/ |
D | array-inl.h | 42 inline size_t Array::SizeOf() { in SizeOf() function 197 CHECK_EQ(result->SizeOf(), size); in Alloc() 199 CHECK_GE(result->SizeOf(), size); in Alloc()
|
D | object-inl.h | 371 inline size_t Object::SizeOf() { in SizeOf() function 379 template SizeOf<kNewFlags, kReadBarrierOption>(); in SizeOf() 382 template SizeOf<kNewFlags, kReadBarrierOption>(); in SizeOf() 385 template SizeOf<kNewFlags>(); in SizeOf()
|
D | array.h | 57 size_t SizeOf() REQUIRES_SHARED(Locks::mutator_lock_);
|
D | object.cc | 156 size_t num_bytes = SizeOf(); in Clone()
|
D | string.h | 68 size_t SizeOf() REQUIRES_SHARED(Locks::mutator_lock_);
|
D | string-inl.h | 189 inline size_t String::SizeOf() { in SizeOf() function
|
/art/compiler/jni/quick/mips64/ |
D | calling_convention_mips64.cc | 190 size_t handle_scope_size = HandleScope::SizeOf(kMips64PointerSize, ReferenceCount()); in FrameSize()
|
/art/compiler/jni/quick/x86/ |
D | calling_convention_x86.cc | 226 const size_t handle_scope_size = HandleScope::SizeOf(kX86PointerSize, ReferenceCount()); in FrameSize()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 208 const size_t handle_scope_size = HandleScope::SizeOf(kX86_64PointerSize, ReferenceCount()); in FrameSize()
|
/art/compiler/ |
D | oat_writer.cc | 188 static size_t SizeOf() { in SizeOf() function in art::OatWriter::OatClassHeader 212 size_t SizeOf() const; 265 size_t SizeOf() const; 847 offset_ += header.SizeOf(); in EndClass() 852 offset_ += writer_->oat_classes_.back().SizeOf(); in EndClass() 1874 offset += oat_dex_file.SizeOf(); in InitOatDexFiles() 2456 relative_offset += oat_class_headers_[i].SizeOf(); in WriteClasses() 2461 relative_offset += oat_classes_[i].SizeOf(); in WriteClasses() 2564 relative_offset += oat_dex_file->SizeOf(); in WriteOatDexFiles() 3342 size_t OatWriter::OatDexFile::SizeOf() const { in SizeOf() function in art::OatWriter::OatDexFile [all …]
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 349 const size_t handle_scope_size = HandleScope::SizeOf(kMipsPointerSize, ReferenceCount()); in FrameSize()
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 271 size_t handle_scope_size = HandleScope::SizeOf(kArm64PointerSize, ReferenceCount()); in FrameSize()
|
/art/runtime/gc/collector/ |
D | mark_compact.cc | 80 const size_t alloc_size = RoundUp(obj->SizeOf(), space::BumpPointerSpace::kAlignment); in ForwardObject() 526 MoveObject(obj, obj->SizeOf()); in MoveObjects()
|
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 398 const size_t handle_scope_size = HandleScope::SizeOf(kArmPointerSize, ReferenceCount()); in FrameSize()
|
/art/runtime/gc/ |
D | heap-inl.h | 166 CHECK_LE(obj->SizeOf(), usable_size); in AllocObjectWithAllocator()
|