Home
last modified time | relevance | path

Searched refs:old_size (Results 1 – 7 of 7) sorted by relevance

/art/compiler/utils/
Dassembler.cc76 size_t old_size = Size(); in ExtendCapacity() local
87 cursor_ = contents_ + old_size; in ExtendCapacity()
92 CHECK_EQ(Size(), old_size); in ExtendCapacity()
/art/runtime/
Dlinear_alloc.cc26 void* LinearAlloc::Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) { in Realloc() argument
28 return allocator_.Realloc(ptr, old_size, new_size); in Realloc()
Dlinear_alloc.h35 void* Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) REQUIRES(!lock_);
Dclass_linker.cc6938 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_methods->size(), in ClobberOldMethods() local
6941 memset(old_methods, 0xFEu, old_size); in ClobberOldMethods()
7118 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_method_count, in ReallocMethods() local
7124 const size_t old_methods_ptr_size = (old_methods != nullptr) ? old_size : 0; in ReallocMethods()
/art/compiler/utils/mips64/
Dassembler_mips64.cc2298 uint32_t old_size = GetOldSize(); in PromoteIfNeeded() local
2300 CHECK_GT(new_size, old_size); in PromoteIfNeeded()
2301 return new_size - old_size; in PromoteIfNeeded()
2310 uint32_t old_size = GetOldSize(); in PromoteIfNeeded() local
2312 CHECK_GT(new_size, old_size); in PromoteIfNeeded()
2313 return new_size - old_size; in PromoteIfNeeded()
2625 uint32_t old_size = buffer_.Size(); in PromoteBranches() local
2626 buffer_.Resize(old_size + size_delta); in PromoteBranches()
2628 uint32_t end = old_size; in PromoteBranches()
/art/compiler/utils/mips/
Dassembler_mips.cc3469 uint32_t old_size = GetOldSize(); in PromoteIfNeeded() local
3471 CHECK_GT(new_size, old_size); in PromoteIfNeeded()
3472 return new_size - old_size; in PromoteIfNeeded()
3481 uint32_t old_size = GetOldSize(); in PromoteIfNeeded() local
3483 CHECK_GT(new_size, old_size); in PromoteIfNeeded()
3484 return new_size - old_size; in PromoteIfNeeded()
3913 uint32_t old_size = buffer_.Size(); in PromoteBranches() local
3914 buffer_.Resize(old_size + size_delta); in PromoteBranches()
3916 uint32_t end = old_size; in PromoteBranches()
/art/compiler/optimizing/
Dnodes.h7039 size_t old_size = blocks->size(); in FOR_EACH_CONCRETE_INSTRUCTION() local
7040 size_t new_size = old_size + number_of_new_blocks; in FOR_EACH_CONCRETE_INSTRUCTION()
7042 std::copy_backward(blocks->begin() + after + 1u, blocks->begin() + old_size, blocks->end()); in FOR_EACH_CONCRETE_INSTRUCTION()