Home
last modified time | relevance | path

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

/external/v8/src/snapshot/
Ddefault-deserializer-allocator.cc66 if (next_alignment_ != kWordAligned) { in Allocate()
67 const int reserved = size + Heap::GetMaximumFillToAlign(next_alignment_); in Allocate()
77 obj = heap->AlignWithFiller(obj, size, reserved, next_alignment_); in Allocate()
79 next_alignment_ = kWordAligned; in Allocate()
114 if (next_alignment_ != kWordAligned) { in GetObject()
115 int padding = Heap::GetFillToAlign(address, next_alignment_); in GetObject()
116 next_alignment_ = kWordAligned; in GetObject()
Ddefault-deserializer-allocator.h33 DCHECK_EQ(kWordAligned, next_alignment_); in SetAlignment()
36 next_alignment_ = static_cast<AllocationAlignment>(alignment); in SetAlignment()
96 AllocationAlignment next_alignment_ = kWordAligned; variable