Home
last modified time | relevance | path

Searched refs:filler_size (Results 1 - 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/heap/
H A Dspaces-inl.h141 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned() local
142 int aligned_size = filler_size + size_in_bytes; in AllocateRawAligned()
148 return filler_size > 0 ? AllocationResult::FromObject( in AllocateRawAligned()
149 heap_->PrecedeWithFiller(object, filler_size)) in AllocateRawAligned()
216 int filler_size = Heap::GetFillToAlign(top, alignment); in AllocateFastAligned() local
217 int aligned_size_in_bytes = size_in_bytes + filler_size; in AllocateFastAligned()
227 if (filler_size > 0) { in AllocateFastAligned()
228 obj = heap()->PrecedeWithFiller(obj, filler_size); in AllocateFastAligned()
H A Dnew-spaces.cc614 int filler_size = Heap::GetFillToAlign(start, alignment); in AddParkedAllocationBuffer() local
615 if (size_in_bytes + filler_size <= parked_size) { in AddParkedAllocationBuffer()
643 int filler_size = Heap::GetFillToAlign(old_top, alignment); in EnsureAllocation() local
644 int aligned_size_in_bytes = size_in_bytes + filler_size; in EnsureAllocation()
657 filler_size = Heap::GetFillToAlign(old_top, alignment); in EnsureAllocation()
658 aligned_size_in_bytes = size_in_bytes + filler_size; in EnsureAllocation()
H A Dread-only-spaces.cc648 int filler_size = Heap::GetFillToAlign(current_top, alignment); in TryAllocateLinearlyAligned() local
650 Address new_top = current_top + filler_size + size_in_bytes; in TryAllocateLinearlyAligned()
655 int allocated_size = filler_size + size_in_bytes; in TryAllocateLinearlyAligned()
660 if (filler_size > 0) { in TryAllocateLinearlyAligned()
662 filler_size); in TryAllocateLinearlyAligned()
H A Dheap.cc3220 HeapObject Heap::PrecedeWithFiller(HeapObject object, int filler_size) { in PrecedeWithFiller() argument
3221 CreateFillerObjectAt(object.address(), filler_size, in PrecedeWithFiller()
3223 return HeapObject::FromAddress(object.address() + filler_size); in PrecedeWithFiller()
3229 int filler_size = allocation_size - object_size; in AlignWithFiller() local
3230 DCHECK_LT(0, filler_size); in AlignWithFiller()
3234 filler_size -= pre_filler; in AlignWithFiller()
3236 if (filler_size) { in AlignWithFiller()
3237 CreateFillerObjectAt(object.address() + object_size, filler_size, in AlignWithFiller()
H A Dheap.h1471 int filler_size);
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
H A Dfont.cc160 int32_t filler_size = ((table_size + 3) & ~3) - table_size; in SerializeTables() local
161 for (int32_t i = 0; i < filler_size; ++i) { in SerializeTables()
/third_party/ffmpeg/libavcodec/
H A Dcbs_h264.h400 uint32_t filler_size; member
H A Dcbs_h264_syntax_template.c1231 ++current->filler_size; in filler()
1236 for (i = 0; i < current->filler_size; i++) in filler()

Completed in 23 milliseconds