Searched refs:RunType (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/src/core/ |
D | SkRegionPriv.h | 20 typedef SkRegion::RunType RunType; typedef 46 static int compute_intervalcount(const SkRegionPriv::RunType runs[]) { in compute_intervalcount() 47 const SkRegionPriv::RunType* curr = runs; in compute_intervalcount() 88 const int64_t size = sk_64_mul(count, sizeof(RunType)) + sizeof(RunHead); in Alloc() 114 SkRegion::RunType* writable_runs() { in writable_runs() 116 return (SkRegion::RunType*)(this + 1); in writable_runs() 119 const SkRegion::RunType* readonly_runs() const { in readonly_runs() 120 return (const SkRegion::RunType*)(this + 1); in readonly_runs() 130 fRunCount * sizeof(RunType)); in ensureWritable() 146 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[]) { in SkipEntireScanline() [all …]
|
D | SkRegion.cpp | 48 SkRegionPriv::RunType& operator[](int i) { in operator []() 59 memcpy(fMalloc.get(), fStack, fCount * sizeof(SkRegionPriv::RunType)); in resizeToAtLeast() 66 SkRegionPriv::RunType fStack[kRunArrayStackCount]; 67 SkAutoTMalloc<SkRegionPriv::RunType> fMalloc; 69 SkRegionPriv::RunType* fPtr; // non-owning pointer 76 static SkRegionPriv::RunType* skip_intervals(const SkRegionPriv::RunType runs[]) { in skip_intervals() 88 return const_cast<SkRegionPriv::RunType*>(runs); in skip_intervals() 91 bool SkRegion::RunsAreARect(const SkRegion::RunType runs[], int count, in RunsAreARect() 271 bool SkRegion::setRuns(RunType runs[], int count) { in setRuns() 284 RunType* stop = runs + count; in setRuns() [all …]
|
D | SkRegion_path.cpp | 38 … fCurrScanline->fXCount = (SkRegion::RunType)((int)(fCurrXPtr - fCurrScanline->firstX())); in done() 47 void copyToRgn(SkRegion::RunType runs[]) const; 83 SkRegion::RunType fLastY; 84 SkRegion::RunType fXCount; 86 SkRegion::RunType* firstX() const { return (SkRegion::RunType*)(this + 1); } in firstX() 89 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount + 1); in nextScanline() 92 SkRegion::RunType* fStorage; 96 SkRegion::RunType* fCurrXPtr; 97 SkRegion::RunType fTop; // first Y value 151 fStorage = (SkRegion::RunType*)sk_malloc_canfail(fStorageCount, sizeof(SkRegion::RunType)); in init() [all …]
|
/third_party/skia/include/core/ |
D | SkRegion.h | 24 typedef int32_t RunType; typedef 504 const SkRegion::RunType* fRuns; 583 const SkRegion::RunType* fRuns; 646 const RunType* getRuns(RunType tmpStorage[], int* intervals) const; 651 bool setRuns(RunType runs[], int count); 658 RunType runs[kRectRegionRuns]); 662 static bool RunsAreARect(const SkRegion::RunType runs[], int count,
|
/third_party/cef/include/base/internal/ |
D | cef_bind_internal.h | 376 using RunType = void(Args...); 407 using RunType = ExtractCallableRunType<Functor>; 413 static ExtractReturnType<RunType> Invoke(RunFunctor&& functor, 422 using RunType = R(Args...); 438 using RunType = R(Args...); 452 using RunType = R(Args...); 482 using RunType = R(Args...); 504 using RunType = R(Args...); 525 using RunType = R(Receiver*, Args...); 541 using RunType = R(const Receiver*, Args...); [all …]
|
/third_party/cef/include/base/ |
D | cef_callback.h | 91 using RunType = R(Args...); variable 107 OnceCallback(RepeatingCallback<RunType> other) in OnceCallback() 110 OnceCallback& operator=(RepeatingCallback<RunType> other) { 171 using RunType = R(Args...); variable
|
/third_party/benchmark/include/benchmark/ |
D | benchmark.h | 1525 enum RunType { RT_Iteration, RT_Aggregate }; enum 1549 RunType run_type;
|