Searched refs:byte_size (Results 1 – 5 of 5) sorted by relevance
/art/compiler/debug/ |
D | elf_debug_info_writer.h | 553 uint32_t byte_size; in WriteTypeDeclaration() local 558 byte_size = 1; in WriteTypeDeclaration() 563 byte_size = 2; in WriteTypeDeclaration() 568 byte_size = 8; in WriteTypeDeclaration() 573 byte_size = 4; in WriteTypeDeclaration() 578 byte_size = 4; in WriteTypeDeclaration() 583 byte_size = 8; in WriteTypeDeclaration() 588 byte_size = 2; in WriteTypeDeclaration() 593 byte_size = 1; in WriteTypeDeclaration() 606 info_.WriteData1(DW_AT_byte_size, byte_size); in WriteTypeDeclaration()
|
/art/runtime/gc/allocator/ |
D | rosalloc.h | 57 size_t byte_size = rosalloc->free_page_run_size_map_[pm_idx]; in ByteSize() local 58 DCHECK_GE(byte_size, static_cast<size_t>(0)); in ByteSize() 59 DCHECK_ALIGNED(byte_size, kPageSize); in ByteSize() 60 return byte_size; in ByteSize() 62 void SetByteSize(RosAlloc* rosalloc, size_t byte_size) in SetByteSize() argument 64 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0)); in SetByteSize() 67 rosalloc->free_page_run_size_map_[pm_idx] = byte_size; in SetByteSize() 104 size_t byte_size = ByteSize(rosalloc); in ReleasePages() local 105 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0)); in ReleasePages() 107 rosalloc->ReleasePageRange(start, start + byte_size); in ReleasePages()
|
D | rosalloc.cc | 340 const size_t byte_size = num_pages * kPageSize; in FreePages() local 344 for (size_t i = 0; i < byte_size / sizeof(uintptr_t); ++i) { in FreePages() 349 memset(ptr, 0, byte_size); in FreePages() 354 << "-0x" << (reinterpret_cast<intptr_t>(ptr) + byte_size) in FreePages() 363 fpr->SetByteSize(this, byte_size); in FreePages() 459 return byte_size; in FreePages()
|
/art/runtime/gc/collector/ |
D | concurrent_copying.cc | 3212 size_t byte_size) { in FillWithDummyObject() argument 3217 CHECK_ALIGNED(byte_size, kObjectAlignment); in FillWithDummyObject() 3218 memset(dummy_obj, 0, byte_size); in FillWithDummyObject() 3230 if (data_offset > byte_size) { in FillWithDummyObject() 3236 CHECK_EQ(byte_size, java_lang_Object_->GetObjectSize<kVerifyNone>()); in FillWithDummyObject() 3238 CHECK_EQ(byte_size, (dummy_obj->SizeOf<kVerifyNone>())); in FillWithDummyObject() 3243 int32_t length = (byte_size - data_offset) / component_size; in FillWithDummyObject() 3247 << "byte_size=" << byte_size << " length=" << length in FillWithDummyObject() 3249 CHECK_EQ(byte_size, (dummy_obj->SizeOf<kVerifyNone>())) in FillWithDummyObject() 3250 << "byte_size=" << byte_size << " length=" << length in FillWithDummyObject() [all …]
|
D | concurrent_copying.h | 257 void FillWithDummyObject(Thread* const self, mirror::Object* dummy_obj, size_t byte_size)
|