Lines Matching defs:alignment
139 int size_in_bytes, AllocationAlignment alignment) {
141 int filler_size = Heap::GetFillToAlign(current_top, alignment);
214 AllocationAlignment alignment, AllocationOrigin origin) {
216 int filler_size = Heap::GetFillToAlign(top, alignment);
241 AllocationAlignment alignment,
247 if (USE_ALLOCATION_ALIGNMENT_BOOL && alignment != kTaggedAligned) {
248 result = AllocateFastAligned(size_in_bytes, nullptr, alignment, origin);
253 return result.IsFailure() ? AllocateRawSlow(size_in_bytes, alignment, origin)
279 int size_in_bytes, AllocationAlignment alignment, AllocationOrigin origin) {
282 if (!EnsureAllocation(size_in_bytes, alignment, origin, &max_aligned_size)) {
292 size_in_bytes, &aligned_size_in_bytes, alignment, origin);
303 int size_in_bytes, AllocationAlignment alignment, AllocationOrigin origin) {
305 USE_ALLOCATION_ALIGNMENT_BOOL && alignment != kTaggedAligned
306 ? AllocateRawAligned(size_in_bytes, alignment, origin)