Searched refs:kMemoryToolRedZoneBytes (Results 1 – 7 of 7) sorted by relevance
/art/runtime/gc/space/ |
D | memory_tool_malloc_space-inl.h | 32 template <size_t kMemoryToolRedZoneBytes, bool kUseObjSizeForUsable> 54 *usable_size_out = usable_size - 2 * kMemoryToolRedZoneBytes; in AdjustForMemoryTool() 59 MEMORY_TOOL_MAKE_NOACCESS(obj_with_rdz, kMemoryToolRedZoneBytes); in AdjustForMemoryTool() 65 reinterpret_cast<uint8_t*>(obj_with_rdz) + kMemoryToolRedZoneBytes); in AdjustForMemoryTool() 73 usable_size - (num_bytes + kMemoryToolRedZoneBytes)); in AdjustForMemoryTool() 85 size_t kMemoryToolRedZoneBytes, 90 kMemoryToolRedZoneBytes, 102 num_bytes + 2 * kMemoryToolRedZoneBytes, in AllocWithGrowth() 110 return memory_tool_details::AdjustForMemoryTool<kMemoryToolRedZoneBytes, kUseObjSizeForUsable>( in AllocWithGrowth() 122 size_t kMemoryToolRedZoneBytes, [all …]
|
D | memory_tool_malloc_space.h | 29 size_t kMemoryToolRedZoneBytes,
|
/art/runtime/ |
D | linear_alloc-inl.h | 30 bytes += ArenaAllocator::kMemoryToolRedZoneBytes; in SetFirstObject() 106 ? ArenaAllocator::kMemoryToolRedZoneBytes : 0; in AllocAlign16()
|
/art/libartbase/base/ |
D | scoped_arena_allocator.cc | 24 static constexpr size_t kMemoryToolRedZoneBytes = 8; variable 96 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8); in AllocWithMemoryTool()
|
D | arena_allocator.cc | 222 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8); in AllocWithMemoryTool() 241 size_t rounded_bytes = bytes + kMemoryToolRedZoneBytes; in AllocWithMemoryToolAlign16()
|
D | arena_allocator.h | 383 static constexpr size_t kMemoryToolRedZoneBytes = 8u; variable
|
/art/runtime/gc/collector/ |
D | mark_compact.cc | 2969 obj_size += ArenaAllocator::kMemoryToolRedZoneBytes; in MultiObjectArena()
|