Searched refs:fVerbs (Results 1 – 10 of 10) sorted by relevance
133 const uint8_t* fVerbs; variable230 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; } in verbs()304 fVerbs = NULL; in SkPathRef()369 fVerbs = NULL;431 fVerbs = reinterpret_cast<uint8_t*>(reinterpret_cast<intptr_t>(fPoints) + newSize); in makeSpace()441 return fVerbs - fVerbCnt; in verbsMemWritable()448 return reinterpret_cast<intptr_t>(fVerbs) - reinterpret_cast<intptr_t>(fPoints); in currSize()482 uint8_t* fVerbs; // points just past the end of the allocation (verbs grow backwards) variable
987 const uint8_t* fVerbs; variable
40 SkDEBUGCODE(fVerbs = nullptr;) in ~SkPathRef()365 uint8_t* vb = fVerbs - fVerbCnt; in growForRepeatedVerb()434 this->fVerbs[~fVerbCnt] = verb; in growForVerb()538 fVerbs = nullptr; in Iter()548 fVerbs = path.verbs(); in setPathRef()555 if (fVerbs == fVerbStop) { in next()560 unsigned verb = *(--fVerbs); in next()592 SkASSERT(fVerbs == fVerbStop); in next()600 const uint8_t* next = fVerbs - 1; in peek()608 SkASSERT(reinterpret_cast<intptr_t>(fVerbs) - reinterpret_cast<intptr_t>(fPoints) >= 0); in validate()[all …]
201 fCurrVerb = fVerbs; in clipQuad()214 SkASSERT(fCurrVerb - fVerbs < kMaxVerbs); in clipQuad()222 fCurrVerb = fVerbs; in clipQuad()223 return SkPath::kDone_Verb != fVerbs[0]; in clipQuad()371 fCurrVerb = fVerbs; in clipCubic()381 SkASSERT(fCurrVerb - fVerbs < kMaxVerbs); in clipCubic()389 fCurrVerb = fVerbs; in clipCubic()390 return SkPath::kDone_Verb != fVerbs[0]; in clipCubic()
1761 fVerbs = nullptr; in Iter()1772 fVerbs = path.fPathRef->verbs(); in setPath()1783 if (fVerbs == nullptr || fVerbs == fVerbStop) { in isClosedContour()1790 const uint8_t* verbs = fVerbs; in isClosedContour()1851 while (fVerbs != fVerbStop) { in consumeDegenerateSegments()1852 unsigned verb = *(fVerbs - 1); // fVerbs is one beyond the current verb in consumeDegenerateSegments()1856 lastMoveVerb = fVerbs; in consumeDegenerateSegments()1860 fVerbs--; in consumeDegenerateSegments()1871 fVerbs--; in consumeDegenerateSegments()1877 fVerbs = lastMoveVerb; in consumeDegenerateSegments()[all …]
39 SkPath::Verb fVerbs[kMaxVerbs]; variable
53 SkPath::Verb fVerbs[kMaxVerbs]; variable
237 fVerbs.reset(kNumVerbs); in createData()240 fVerbs[i] = static_cast<SkPath::Verb>(fRandom.nextULessThan(SkPath::kDone_Verb)); in createData()241 } while (!allowMoves && SkPath::kMove_Verb == fVerbs[i]); in createData()260 int verb = fVerbs[(fCurrVerb++) & (kNumVerbs - 1)]; in makePath()297 fVerbs.reset(0); in finishedMakingPaths()309 SkAutoTArray<SkPath::Verb> fVerbs; member in RandomPathBench
21 const unsigned char* fVerbs; member
29 init(fontData.fPoints, fontData.fVerbs); in SkTestFont()