Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrSubRunAllocator.cpp45 void* GrBagOfBytes::alignedBytes(int size, int alignment) { in alignedBytes() function in GrBagOfBytes
85 void* GrSubRunAllocator::alignedBytes(int unsafeSize, int unsafeAlignment) { in alignedBytes() function in GrSubRunAllocator
86 return fAlloc.alignedBytes(unsafeSize, unsafeAlignment); in alignedBytes()
DGrSubRunAllocator.h85 void* alignedBytes(int unsafeSize, int unsafeAlignment);
215 void* alignedBytes(int size, int alignment);
/external/angle/src/common/
DPoolAlloc.h256 size_t alignedBytes = numBytes + mAlignment; in initializeAllocation() local
257 return std::align(mAlignment, numBytes, unalignedPtr, alignedBytes); in initializeAllocation()
/external/skia/tests/
DGrTextBlobTest.cpp187 bob.alignedBytes(1, 1); // To avoid unused variable problems. in DEF_TEST()
197 bob.alignedBytes(k64K, 1); in DEF_TEST()
319 void* ptr = arena.alignedBytes(4081, 8); in DEF_TEST()
/external/skia/src/gpu/text/
DGrTextBlob.cpp1700 alloc->alignedBytes(drawables.size() * sizeof(GlyphVector::Variant), in Make()