HomeSort by relevance Sort by last modified time
    Searched defs:old_end (Results 1 - 6 of 6) sorted by null

  /art/runtime/gc/space/
bump_pointer_space-inl.h 67 uint8_t* old_end; local
70 old_end = end_.LoadRelaxed();
71 new_end = old_end + num_bytes;
76 } while (!end_.CompareExchangeWeakSequentiallyConsistent(old_end, new_end));
77 return reinterpret_cast<mirror::Object*>(old_end);
  /art/runtime/
leb128.h 145 const uint8_t* old_end = dest; local
146 uint32_t old_value = DecodeUnsignedLeb128(&old_end);
148 for (uint8_t* end = EncodeUnsignedLeb128(dest, value); end < old_end; end++) {
leb128_test.cc 264 uint8_t* old_end = EncodeUnsignedLeb128(encoded_data, old_value); local
269 EXPECT_EQ(new_end, old_end);
mem_map.cc 565 uint8_t* old_end = begin_ + size_; local
575 size_t tail_size = old_end - new_end;
  /art/runtime/mirror/
array-inl.h 135 uint8_t* old_end = reinterpret_cast<uint8_t*>(array->GetRawData(1U << component_size_shift_, local
140 memset(old_end, 0, new_end - old_end);
  /bionic/libc/upstream-dlmalloc/
malloc.c 4002 char* old_end = oldsp->base + oldsp->size; local
    [all...]

Completed in 80 milliseconds