Home | History | Annotate | Download | only in core

Lines Matching defs:RunHead

58 struct SkAAClip::RunHead {
64 return (YOffset*)((char*)this + sizeof(RunHead));
67 return (const YOffset*)((const char*)this + sizeof(RunHead));
76 static RunHead* Alloc(int rowCount, size_t dataSize) {
77 size_t size = sizeof(RunHead) + rowCount * sizeof(YOffset) + dataSize;
78 RunHead* head = (RunHead*)sk_malloc_throw(size);
96 static RunHead* AllocRect(const SkIRect& bounds) {
100 RunHead* head = RunHead::Alloc(1, rowSize);
145 const RunHead* head = clip.fRunHead;
197 const RunHead* head = fRunHead;
447 RunHead* head = fRunHead;
523 RunHead* head = fRunHead;
603 const RunHead* head = fRunHead;
668 const SkAAClip::RunHead* ah = a.fRunHead;
669 const SkAAClip::RunHead* bh = b.fRunHead;
722 fRunHead = RunHead::AllocRect(bounds);
733 const RunHead* head = fRunHead;
854 // now pack everything into a RunHead
855 RunHead* head = RunHead::Alloc(yArray.count(), xArray.bytes());
1098 RunHead* head = RunHead::Alloc(fRows.count(), dataSize);