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

  /external/skia/src/core/
SkRegionPriv.h 32 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType));
43 SkRegion::RunType* writable_runs()
47 return (SkRegion::RunType*)(this + 1);
49 const SkRegion::RunType* readonly_runs() const
52 return (const SkRegion::RunType*)(this + 1);
67 fRunCount * sizeof(RunType));
SkRegion_rects.cpp 19 SkRegion::RunType fX;
20 SkRegion::RunType fTop;
21 SkRegion::RunType fBottom;
61 Accumulator(SkRegion::RunType top, int numRects);
64 SkRegion::RunType append(SkRegion::RunType top, const VEdge* edge);
67 void copyTo(SkRegion::RunType dst[]);
71 SkRegion::RunType* fPtr;
72 SkRegion::RunType fBottom;
77 SkRegion::RunType fTop
    [all...]
SkRegion.cpp 20 static SkRegion::RunType* skip_scanline(const SkRegion::RunType runs[])
27 return (SkRegion::RunType*)(runs + 1); // return past the X-sentinel
31 bool SkRegion::ComputeRunBounds(const SkRegion::RunType runs[], int count, SkIRect* bounds)
216 const RunType* runs = fRunHead->readonly_runs() + 1;
220 const RunType* next = skip_scanline(runs + 1);
233 bool SkRegion::setRuns(RunType runs[], int count)
249 RunType* stop = runs + count;
293 const RunType* r = runs;
315 memcpy(fRunHead->writable_runs(), runs, count * sizeof(RunType));
    [all...]
SkRegion_path.cpp 25 fCurrScanline->fXCount = (SkRegion::RunType)((int)(fCurrXPtr - fCurrScanline->firstX()));
34 void copyToRgn(SkRegion::RunType runs[]) const;
55 SkRegion::RunType fLastY;
56 SkRegion::RunType fXCount;
58 SkRegion::RunType* firstX() const { return (SkRegion::RunType*)(this + 1); }
60 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount);
63 SkRegion::RunType* fStorage;
67 SkRegion::RunType* fCurrXPtr;
68 SkRegion::RunType fTop; // first Y valu
    [all...]
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 69 template <typename RunType>
79 typedef void RunType();
81 template <typename RunType>
82 Callback(BindState<RunType> bind_state) {
83 BindState<RunType>::Run();
  /external/skia/include/core/
SkRegion.h 32 typedef int32_t RunType;
312 const RunType* fRuns;
345 const SkRegion::RunType* fRuns;
373 SkDEBUGCODE(bool debugSetRuns(const RunType runs[], int count);)
393 const RunType* getRuns(RunType tmpStorage[], int* count) const;
394 bool setRuns(RunType runs[], int count);
399 RunType runs[kRectRegionRuns]);
401 static bool ComputeRunBounds(const RunType runs[], int count,

Completed in 304 milliseconds