HomeSort by relevance Sort by last modified time
    Searched refs:kMemoryToolRedZoneBytes (Results 1 - 5 of 5) sorted by null

  /art/runtime/gc/space/
memory_tool_malloc_space-inl.h 32 template <size_t kMemoryToolRedZoneBytes, bool kUseObjSizeForUsable>
54 *usable_size_out = usable_size - 2 * kMemoryToolRedZoneBytes;
59 MEMORY_TOOL_MAKE_NOACCESS(obj_with_rdz, kMemoryToolRedZoneBytes);
65 reinterpret_cast<uint8_t*>(obj_with_rdz) + kMemoryToolRedZoneBytes);
73 usable_size - (num_bytes + kMemoryToolRedZoneBytes));
85 size_t kMemoryToolRedZoneBytes,
90 kMemoryToolRedZoneBytes,
102 num_bytes + 2 * kMemoryToolRedZoneBytes,
110 return memory_tool_details::AdjustForMemoryTool<kMemoryToolRedZoneBytes, kUseObjSizeForUsable>(
122 size_t kMemoryToolRedZoneBytes,
    [all...]
memory_tool_malloc_space.h 29 size_t kMemoryToolRedZoneBytes,
large_object_space.cc 57 LargeObjectMapSpace::Alloc(self, num_bytes + kMemoryToolRedZoneBytes * 2, bytes_allocated,
60 reinterpret_cast<uintptr_t>(obj) + kMemoryToolRedZoneBytes);
61 MEMORY_TOOL_MAKE_NOACCESS(reinterpret_cast<void*>(obj), kMemoryToolRedZoneBytes);
64 kMemoryToolRedZoneBytes);
92 reinterpret_cast<uintptr_t>(obj) - kMemoryToolRedZoneBytes);
97 reinterpret_cast<uintptr_t>(obj) - kMemoryToolRedZoneBytes);
100 static constexpr size_t kMemoryToolRedZoneBytes = kPageSize;
  /art/libartbase/base/
scoped_arena_allocator.cc 24 static constexpr size_t kMemoryToolRedZoneBytes = 8;
96 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8);
arena_allocator.cc 31 constexpr size_t kMemoryToolRedZoneBytes = 8;
226 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8);
245 size_t rounded_bytes = bytes + kMemoryToolRedZoneBytes;

Completed in 3096 milliseconds