HomeSort by relevance Sort by last modified time
    Searched defs:RunHead (Results 1 - 4 of 4) 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.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...]
  /external/skqp/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.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 83 milliseconds