Home | History | Annotate | Download | only in core

Lines Matching refs:RunHead

57 struct SkAAClip::RunHead {
63 return (YOffset*)((char*)this + sizeof(RunHead));
66 return (const YOffset*)((const char*)this + sizeof(RunHead));
75 static RunHead* Alloc(int rowCount, size_t dataSize) {
76 size_t size = sizeof(RunHead) + rowCount * sizeof(YOffset) + dataSize;
77 RunHead* head = (RunHead*)sk_malloc_throw(size);
95 static RunHead* AllocRect(const SkIRect& bounds) {
99 RunHead* head = RunHead::Alloc(1, rowSize);
144 const RunHead* head = clip.fRunHead;
196 const RunHead* head = fRunHead;
446 RunHead* head = fRunHead;
522 RunHead* head = fRunHead;
602 const RunHead* head = fRunHead;
667 const SkAAClip::RunHead* ah = a.fRunHead;
668 const SkAAClip::RunHead* bh = b.fRunHead;
721 fRunHead = RunHead::AllocRect(bounds);
732 const RunHead* head = fRunHead;
853 // now pack everything into a RunHead
854 RunHead* head = RunHead::Alloc(yArray.count(), xArray.bytes());
1097 RunHead* head = RunHead::Alloc(fRows.count(), dataSize);