Home
last modified time | relevance | path

Searched refs:objectAlignment (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/common/
DSlabAllocator.h92 SlabAllocatorImpl(Index blocksPerSlab, uint32_t objectSize, uint32_t objectAlignment);
169 uint32_t objectAlignment = alignof(T))
170 : SlabAllocatorImpl(totalObjectBytes / objectSize, objectSize, objectAlignment) {
DSlabAllocator.cpp62 uint32_t objectAlignment) in SlabAllocatorImpl() argument
63 : mAllocationAlignment(std::max(static_cast<uint32_t>(alignof(Slab)), objectAlignment)), in SlabAllocatorImpl()
64 mSlabBlocksOffset(Align(sizeof(Slab), objectAlignment)), in SlabAllocatorImpl()
66 mBlockStride(Align(mIndexLinkNodeOffset + sizeof(IndexLinkNode), objectAlignment)), in SlabAllocatorImpl()