Home
last modified time | relevance | path

Searched defs:SkBufferBlock (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/core/
DSkRWBuffer.cpp18 struct SkBufferBlock { struct
19 SkBufferBlock* fNext; // updated by the writer argument
23 SkBufferBlock(size_t capacity) : fNext(nullptr), fUsed(0), fCapacity(capacity) {} in SkBufferBlock() function
30 static SkBufferBlock* Alloc(size_t length) { in Alloc() argument
59 const size_t minSize = kMinAllocSize - sizeof(SkBufferBlock); in LengthToCapacity() argument