Searched refs:verbCount (Results 1 - 8 of 8) sorted by relevance

/external/skia/src/core/
H A DSkPathPriv.h59 int verbCount = path.countVerbs(); local
60 if (verbCount == 0)
64 for (int i = 0; i < verbCount; i++) {
73 if (i == verbCount - 1) {
H A DSkPathRef.cpp139 int32_t verbCount, pointCount, conicCount;
142 !buffer->readS32(&verbCount) ||
143 verbCount < 0 ||
144 static_cast<uint32_t>(verbCount) > maxPtrDiff/sizeof(uint8_t) ||
148 sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount >
156 ref->resetToSize(verbCount, pointCount, conicCount);
157 SkASSERT(verbCount == ref->countVerbs());
161 if (!buffer->read(ref->verbsMemWritable(), verbCount * sizeof(uint8_t)) ||
H A DSkPath.cpp214 int verbCount = fPathRef->countVerbs(); local
215 if (verbCount != ending.fPathRef->countVerbs()) {
218 if (!verbCount) {
353 int verbCount = fPathRef->countVerbs(); local
354 if (0 == verbCount) {
357 return kClose_Verb == fPathRef->atVerb(verbCount - 1);
361 int verbCount = fPathRef->countVerbs(); local
363 if (2 == verbCount) {
2007 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
/external/skia/src/pathops/
H A DSkOpBuilder.cpp16 int verbCount = path.countVerbs(); local
17 uint8_t* verbs = (uint8_t*) allocator.alloc(sizeof(uint8_t) * verbCount,
19 (void) path.getVerbs(verbs, verbCount);
20 for (int index = 1; index < verbCount; ++index) {
/external/skia/tests/
H A DSubsetPath.cpp157 int verbCount = 0; local
166 ++verbCount;
175 for (int index = 0; index < verbCount; ++index) {
178 fTries = verbCount;
/external/skia/include/core/
H A DSkPathRef.h348 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
350 void resetToSize(int verbCount, int pointCount, int conicCount, argument
360 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
374 fVerbCnt = verbCount;
379 fVerbCnt = verbCount;
/external/skia/samplecode/
H A DSamplePathFuzz.cpp600 int verbCount = path.countVerbs(); local
601 if (verbCount == 0) {
605 verbs.setCount(verbCount);
606 SkDEBUGCODE(int getVerbResult = ) path.getVerbs(verbs.begin(), verbCount);
607 SkASSERT(getVerbResult == verbCount);
608 for (int index = 0; index < verbCount; ++index) {
/external/skia/tools/
H A Dcreate_test_font.cpp239 int verbCount = verbs.count(); local
241 for (int index = 0; index < verbCount;) {
246 if (++index < verbCount) {

Completed in 75 milliseconds