/external/skia/src/gpu/ |
D | GrBufferAllocPool.h | 109 void* makeSpace(size_t size, size_t alignment, sk_sp<const GrBuffer>* buffer, size_t* offset); 205 void* makeSpace(size_t vertexSize, 281 void* makeSpace(int indexCount, sk_sp<const GrBuffer>* buffer, int* startIndex); 323 GrDrawIndirectWriter makeSpace(int drawCount, sk_sp<const GrBuffer>* buffer, size_t* offset) { in makeSpace() function 324 return this->GrBufferAllocPool::makeSpace(drawCount * sizeof(GrDrawIndirectCommand), 4, in makeSpace() 334 return this->GrBufferAllocPool::makeSpace( in makeIndexedSpace()
|
D | GrBufferAllocPool.cpp | 191 void* GrBufferAllocPool::makeSpace(size_t size, in makeSpace() function in GrBufferAllocPool 429 void* GrVertexBufferAllocPool::makeSpace(size_t vertexSize, in makeSpace() function in GrVertexBufferAllocPool 438 void* ptr = INHERITED::makeSpace(SkSafeMath::Mul(vertexSize, vertexCount), in makeSpace() 482 void* GrIndexBufferAllocPool::makeSpace(int indexCount, sk_sp<const GrBuffer>* buffer, in makeSpace() function in GrIndexBufferAllocPool 489 void* ptr = INHERITED::makeSpace(SkSafeMath::Mul(indexCount, sizeof(uint16_t)), in makeSpace()
|
D | GrOpFlushState.cpp | 173 return fVertexPool.makeSpace(vertexSize, vertexCount, buffer, startVertex); in makeVertexSpace() 178 return reinterpret_cast<uint16_t*>(fIndexPool.makeSpace(indexCount, buffer, startIndex)); in makeIndexSpace()
|
D | GrOpFlushState.h | 144 return fDrawIndirectPool.makeSpace(drawCount, buffer, offset); in makeDrawIndirectSpace()
|
/external/skqp/src/gpu/ |
D | GrBufferAllocPool.h | 85 void* makeSpace(size_t size, size_t alignment, sk_sp<const GrBuffer>* buffer, size_t* offset); 182 void* makeSpace(size_t vertexSize, 258 void* makeSpace(int indexCount, sk_sp<const GrBuffer>* buffer, int* startIndex);
|
D | GrBufferAllocPool.cpp | 129 void* GrBufferAllocPool::makeSpace(size_t size, in makeSpace() function in GrBufferAllocPool 380 void* GrVertexBufferAllocPool::makeSpace(size_t vertexSize, in makeSpace() function in GrVertexBufferAllocPool 389 void* ptr = INHERITED::makeSpace(SkSafeMath::Mul(vertexSize, vertexCount), in makeSpace() 433 void* GrIndexBufferAllocPool::makeSpace(int indexCount, sk_sp<const GrBuffer>* buffer, in makeSpace() function in GrIndexBufferAllocPool 440 void* ptr = INHERITED::makeSpace(SkSafeMath::Mul(indexCount, sizeof(uint16_t)), in makeSpace()
|
D | GrOpFlushState.cpp | 134 return fVertexPool.makeSpace(vertexSize, vertexCount, buffer, startVertex); in makeVertexSpace() 139 return reinterpret_cast<uint16_t*>(fIndexPool.makeSpace(indexCount, buffer, startIndex)); in makeIndexSpace()
|
/external/skqp/include/private/ |
D | SkPathRef.h | 396 this->makeSpace(space); in incReserve() 425 this->makeSpace(minSize, true); 457 void makeSpace(size_t size, bool exact = false) {
|
/external/skqp/src/core/ |
D | SkPathRef.cpp | 594 this->makeSpace(space); in growForRepeatedVerb() 670 this->makeSpace(space); in growForVerb()
|