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

  /external/skia/src/core/
SkRegionPriv.h 41 struct SkRegion::RunHead {
67 static RunHead* Alloc(int count) {
75 const int64_t size = sk_64_mul(count, sizeof(RunType)) + sizeof(RunHead);
78 RunHead* head = (RunHead*)sk_malloc_throw(size);
87 static RunHead* Alloc(int count, int yspancount, int intervalCount) {
92 RunHead* head = Alloc(count);
110 RunHead* ensureWritable() {
111 RunHead* writable = this;
SkAAClip.h 72 struct RunHead;
86 RunHead* fRunHead;
SkAAClip.cpp 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)
    [all...]
SkRegion.cpp 103 fRunHead = RunHead::Alloc(count, ySpanCount, intervalCount);
107 fRunHead = RunHead::Alloc(count);
110 void SkRegion::allocateRuns(const RunHead& head) {
111 fRunHead = RunHead::Alloc(head.fRunCount,
123 SkTSwap<RunHead*>(fRunHead, other.fRunHead);
518 const SkRegion::RunHead* ah = fRunHead;
519 const SkRegion::RunHead* bh = b.fRunHead;
    [all...]
SkRegion_path.cpp 371 tmp.fRunHead = RunHead::Alloc(count);
  /external/skia/include/core/
SkRegion.h 22 #define SkRegion_gEmptyRunHeadPtr ((SkRegion::RunHead*)-1)
413 struct RunHead;
418 void allocateRuns(const RunHead& src);
421 RunHead* fRunHead;
455 friend struct RunHead;

Completed in 3264 milliseconds