Home
last modified time | relevance | path

Searched refs:old_end (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/space/
Dbump_pointer_space-inl.h68 uint8_t* old_end; in AllocNonvirtualWithoutAccounting() local
71 old_end = end_.LoadRelaxed(); in AllocNonvirtualWithoutAccounting()
72 new_end = old_end + num_bytes; in AllocNonvirtualWithoutAccounting()
77 } while (!end_.CompareExchangeWeakSequentiallyConsistent(old_end, new_end)); in AllocNonvirtualWithoutAccounting()
78 return reinterpret_cast<mirror::Object*>(old_end); in AllocNonvirtualWithoutAccounting()
/art/runtime/
Dleb128.h240 const uint8_t* old_end = dest; in UpdateUnsignedLeb128() local
241 uint32_t old_value = DecodeUnsignedLeb128(&old_end); in UpdateUnsignedLeb128()
243 for (uint8_t* end = EncodeUnsignedLeb128(dest, value); end < old_end; end++) { in UpdateUnsignedLeb128()
Dleb128_test.cc264 uint8_t* old_end = EncodeUnsignedLeb128(encoded_data, old_value); in TEST() local
269 EXPECT_EQ(new_end, old_end); in TEST()
Dmem_map.cc549 uint8_t* old_end = begin_ + size_; in RemapAtEnd() local
559 size_t tail_size = old_end - new_end; in RemapAtEnd()
/art/runtime/mirror/
Darray-inl.h137 uint8_t* old_end = reinterpret_cast<uint8_t*>(array->GetRawData(1U << component_size_shift_, in operator() local
142 memset(old_end, 0, new_end - old_end); in operator()