Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dvalgrind_malloc_space-inl.h36 void* obj_with_rdz = S::AllocWithGrowth(self, num_bytes + 2 * kValgrindRedZoneBytes, in AllocWithGrowth() local
38 if (obj_with_rdz == nullptr) { in AllocWithGrowth()
42 reinterpret_cast<byte*>(obj_with_rdz) + kValgrindRedZoneBytes); in AllocWithGrowth()
44 VALGRIND_MAKE_MEM_NOACCESS(obj_with_rdz, kValgrindRedZoneBytes); in AllocWithGrowth()
53 void* obj_with_rdz = S::Alloc(self, num_bytes + 2 * kValgrindRedZoneBytes, bytes_allocated, in Alloc() local
55 if (obj_with_rdz == nullptr) { in Alloc()
59 reinterpret_cast<byte*>(obj_with_rdz) + kValgrindRedZoneBytes); in Alloc()
61 VALGRIND_MAKE_MEM_NOACCESS(obj_with_rdz, kValgrindRedZoneBytes); in Alloc()
76 void* obj_with_rdz = reinterpret_cast<byte*>(obj_after_rdz) - kValgrindRedZoneBytes; in Free() local
80 VALGRIND_MAKE_MEM_UNDEFINED(obj_with_rdz, usable_size); in Free()
[all …]