Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dmemory_tool_malloc_space-inl.h32 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 …]
Dmemory_tool_malloc_space.h29 size_t kMemoryToolRedZoneBytes,
/art/runtime/
Dlinear_alloc-inl.h30 bytes += ArenaAllocator::kMemoryToolRedZoneBytes; in SetFirstObject()
106 ? ArenaAllocator::kMemoryToolRedZoneBytes : 0; in AllocAlign16()
/art/libartbase/base/
Dscoped_arena_allocator.cc24 static constexpr size_t kMemoryToolRedZoneBytes = 8; variable
96 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8); in AllocWithMemoryTool()
Darena_allocator.cc222 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8); in AllocWithMemoryTool()
241 size_t rounded_bytes = bytes + kMemoryToolRedZoneBytes; in AllocWithMemoryToolAlign16()
Darena_allocator.h383 static constexpr size_t kMemoryToolRedZoneBytes = 8u; variable
/art/runtime/gc/collector/
Dmark_compact.cc2969 obj_size += ArenaAllocator::kMemoryToolRedZoneBytes; in MultiObjectArena()