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 36 struct SkRegion::RunHead {
62 static RunHead* Alloc(int count) {
68 const int64_t size = sk_64_mul(count, sizeof(RunType)) + sizeof(RunHead);
71 RunHead* head = (RunHead*)sk_malloc_throw(size);
80 static RunHead* Alloc(int count, int yspancount, int intervalCount) {
84 RunHead* head = Alloc(count);
99 RunHead* ensureWritable() {
100 RunHead* writable = this;
SkAAClip.cpp 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)
    [all...]

Completed in 53 milliseconds