Home | History | Annotate | Download | only in space

Lines Matching refs:kAlignment

207     return AlignSize() * FreeListSpace::kAlignment;
211 DCHECK_ALIGNED(size, FreeListSpace::kAlignment);
212 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0U);
235 // Return how many kAlignment units there are before the free block.
241 return GetPrevFree() * FreeListSpace::kAlignment;
245 DCHECK_ALIGNED(bytes, FreeListSpace::kAlignment);
246 prev_free_ = bytes / FreeListSpace::kAlignment;
254 // Contains the size of the previous free block with kAlignment as the unit. If 0 then the
258 // Allocation size of this object in kAlignment as the unit.
286 CHECK_EQ(size % kAlignment, 0U);
300 CHECK_ALIGNED(space_capacity, kAlignment);
301 const size_t alloc_info_size = sizeof(AllocationInfo) * (space_capacity / kAlignment);
343 DCHECK_ALIGNED(obj, kAlignment);
348 DCHECK_ALIGNED(allocation_size, kAlignment);
375 DCHECK(IsAligned<kAlignment>(next_next_info->ByteSize()));
412 const size_t allocation_size = RoundUp(num_bytes, kAlignment);