Lines Matching refs:YOffset
53 struct SkAAClip::YOffset {
63 YOffset* yoffsets() {
64 return (YOffset*)((char*)this + sizeof(RunHead));
66 const YOffset* yoffsets() const {
67 return (const YOffset*)((const char*)this + sizeof(RunHead));
77 size_t size = sizeof(RunHead) + rowCount * sizeof(YOffset) + dataSize;
101 YOffset* yoff = head->yoffsets();
127 const YOffset* fCurrYOff;
128 const YOffset* fStopYOff;
158 const YOffset* prev = fCurrYOff;
159 const YOffset* curr = prev + 1;
200 const YOffset* yoff = head->yoffsets();
201 const YOffset* ystop = yoff + head->fRowCount;
407 YOffset* yoff = head->yoffsets();
408 YOffset* stop = yoff + head->fRowCount;
483 YOffset* yoff = head->yoffsets();
484 YOffset* stop = yoff + head->fRowCount;
504 // as we remove [skip] number of YOffset entries
511 YOffset* dst = head->yoffsets();
512 size_t size = head->fRowCount * sizeof(YOffset) + head->fDataSize;
513 memmove(dst, dst + skip, size - skip * sizeof(YOffset));
563 const YOffset* yoff = head->yoffsets();
566 const YOffset& lastY = yoff[head->fRowCount - 1];
736 SkTDArray<YOffset> yArray;
745 YOffset* currY = NULL;
808 const YOffset* yoff = fRunHead->yoffsets();
1025 YOffset* yoffset = head->yoffsets();
1035 yoffset->fY = row->fY - adjustY;
1036 yoffset->fOffset = data - baseData;
1037 yoffset += 1;