HomeSort by relevance Sort by last modified time
    Searched defs:RunHead (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkRegionPriv.h 21 struct SkRegion::RunHead {
25 static RunHead* Alloc(int count)
32 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType));
55 RunHead* ensureWritable()
59 RunHead* writable = this;
SkAAClip.cpp 56 struct SkAAClip::RunHead {
62 return (YOffset*)((char*)this + sizeof(RunHead));
65 return (const YOffset*)((const char*)this + sizeof(RunHead));
74 static RunHead* Alloc(int rowCount, size_t dataSize) {
75 size_t size = sizeof(RunHead) + rowCount * sizeof(YOffset) + dataSize;
76 RunHead* head = (RunHead*)sk_malloc_throw(size);
94 static RunHead* AllocRect(const SkIRect& bounds) {
98 RunHead* head = RunHead::Alloc(1, rowSize)
    [all...]

Completed in 147 milliseconds