Searched refs:filler_size (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/heap/ |
D | spaces-inl.h | 269 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned() local 271 Address new_top = current_top + filler_size + size_in_bytes; in AllocateRawAligned() 275 if (filler_size > 0) { in AllocateRawAligned() 277 filler_size); in AllocateRawAligned() 301 int filler_size = Heap::GetFillToAlign(current_top, alignment); in TryAllocateLinearlyAligned() local 303 Address new_top = current_top + filler_size + *size_in_bytes; in TryAllocateLinearlyAligned() 307 if (filler_size > 0) { in TryAllocateLinearlyAligned() 308 *size_in_bytes += filler_size; in TryAllocateLinearlyAligned() 310 filler_size); in TryAllocateLinearlyAligned() 341 int filler_size = Heap::GetMaximumFillToAlign(alignment); in AllocateRawAligned() local [all …]
|
D | heap.cc | 2609 HeapObject* Heap::PrecedeWithFiller(HeapObject* object, int filler_size) { in PrecedeWithFiller() argument 2610 CreateFillerObjectAt(object->address(), filler_size, ClearRecordedSlots::kNo); in PrecedeWithFiller() 2611 return HeapObject::FromAddress(object->address() + filler_size); in PrecedeWithFiller() 2618 int filler_size = allocation_size - object_size; in AlignWithFiller() local 2619 DCHECK_LT(0, filler_size); in AlignWithFiller() 2623 filler_size -= pre_filler; in AlignWithFiller() 2625 if (filler_size) in AlignWithFiller() 2626 CreateFillerObjectAt(object->address() + object_size, filler_size, in AlignWithFiller()
|
D | spaces.cc | 2364 int filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk() local 2365 int aligned_size_in_bytes = size_in_bytes + filler_size; in AllocateChunk() 2375 filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk() 2386 Address soon_object = old_top + filler_size; in AllocateChunk()
|
D | heap.h | 1355 int filler_size);
|
/external/sfntly/cpp/src/sfntly/ |
D | font.cc | 159 int32_t filler_size = ((table_size + 3) & ~3) - table_size; in SerializeTables() local 160 for (int32_t i = 0; i < filler_size; ++i) { in SerializeTables()
|