Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces-inl.h418 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned() local
420 Address new_top = current_top + filler_size + size_in_bytes; in AllocateRawAligned()
424 if (filler_size > 0) { in AllocateRawAligned()
426 filler_size); in AllocateRawAligned()
436 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateLinearlyAligned() local
438 Address new_top = current_top + filler_size + *size_in_bytes; in AllocateLinearlyAligned()
442 if (filler_size > 0) { in AllocateLinearlyAligned()
443 *size_in_bytes += filler_size; in AllocateLinearlyAligned()
445 filler_size); in AllocateLinearlyAligned()
493 int filler_size = Heap::GetMaximumFillToAlign(alignment); in AllocateRawAligned() local
[all …]
Dheap.cc2018 HeapObject* Heap::PrecedeWithFiller(HeapObject* object, int filler_size) { in PrecedeWithFiller() argument
2019 CreateFillerObjectAt(object->address(), filler_size, ClearRecordedSlots::kNo); in PrecedeWithFiller()
2020 return HeapObject::FromAddress(object->address() + filler_size); in PrecedeWithFiller()
2027 int filler_size = allocation_size - object_size; in AlignWithFiller() local
2028 DCHECK(filler_size > 0); in AlignWithFiller()
2032 filler_size -= pre_filler; in AlignWithFiller()
2034 if (filler_size) in AlignWithFiller()
2035 CreateFillerObjectAt(object->address() + object_size, filler_size, in AlignWithFiller()
Dspaces.cc1586 int filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk() local
1587 int aligned_size_in_bytes = size_in_bytes + filler_size; in AllocateChunk()
1599 filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk()
1610 Address soon_object = old_top + filler_size; in AllocateChunk()
Dheap.h1376 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()
/external/v8/test/cctest/heap/
Dtest-heap.cc1984 int filler_size = static_cast<int>(FixedArray::SizeFor(8192)); in HEAP_TEST() local
1987 CHECK_EQ(initial_size + i * filler_size, in HEAP_TEST()