Home
last modified time | relevance | path

Searched refs:filler_size (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/heap/
Dspaces-inl.h390 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned() local
392 Address new_top = current_top + filler_size + size_in_bytes; in AllocateRawAligned()
396 if (filler_size > 0) { in AllocateRawAligned()
398 filler_size); in AllocateRawAligned()
408 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateLinearlyAligned() local
410 Address new_top = current_top + filler_size + *size_in_bytes; in AllocateLinearlyAligned()
414 if (filler_size > 0) { in AllocateLinearlyAligned()
415 *size_in_bytes += filler_size; in AllocateLinearlyAligned()
417 filler_size); in AllocateLinearlyAligned()
470 int filler_size = Heap::GetMaximumFillToAlign(alignment); in AllocateRawAligned() local
[all …]
Dheap.cc2040 HeapObject* Heap::PrecedeWithFiller(HeapObject* object, int filler_size) { in PrecedeWithFiller() argument
2041 CreateFillerObjectAt(object->address(), filler_size, ClearRecordedSlots::kNo); in PrecedeWithFiller()
2042 return HeapObject::FromAddress(object->address() + filler_size); in PrecedeWithFiller()
2049 int filler_size = allocation_size - object_size; in AlignWithFiller() local
2050 DCHECK(filler_size > 0); in AlignWithFiller()
2054 filler_size -= pre_filler; in AlignWithFiller()
2056 if (filler_size) in AlignWithFiller()
2057 CreateFillerObjectAt(object->address() + object_size, filler_size, in AlignWithFiller()
Dspaces.cc1750 int filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk() local
1751 int aligned_size_in_bytes = size_in_bytes + filler_size; in AllocateChunk()
1763 filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk()
1774 Address soon_object = old_top + filler_size; in AllocateChunk()
Dheap.h1464 int filler_size);
/external/sfntly/cpp/src/sfntly/
Dfont.cc159 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()