Searched defs:verbCount (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkPathRef.cpp123 int32_t verbCount, pointCount, conicCount; local
125 !buffer->readS32(&verbCount) ||
132 ref->resetToSize(verbCount, pointCount, conicCount);
133 SkASSERT(verbCount == ref->countVerbs());
137 if (!buffer->read(ref->verbsMemWritable(), verbCount * sizeof(uint8_t)) ||
H A DSkPath.cpp326 int verbCount = fPathRef->countVerbs(); local
328 if (2 == verbCount) {
1966 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
/external/skia/src/core/
H A DSkPathRef.cpp123 int32_t verbCount, pointCount, conicCount; local
125 !buffer->readS32(&verbCount) ||
132 ref->resetToSize(verbCount, pointCount, conicCount);
133 SkASSERT(verbCount == ref->countVerbs());
137 if (!buffer->read(ref->verbsMemWritable(), verbCount * sizeof(uint8_t)) ||
H A DSkPath.cpp326 int verbCount = fPathRef->countVerbs(); local
328 if (2 == verbCount) {
2060 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
/external/chromium_org/third_party/skia/tools/
H A Dcreate_test_font.cpp287 int verbCount = verbs.count(); local
289 for (int index = 0; index < verbCount;) {
294 if (++index < verbCount) {
/external/chromium_org/third_party/skia/include/core/
H A DSkPathRef.h317 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
319 void resetToSize(int verbCount, int pointCount, int conicCount, argument
328 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
342 fVerbCnt = verbCount;
347 fVerbCnt = verbCount;
/external/skia/include/core/
H A DSkPathRef.h314 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
316 void resetToSize(int verbCount, int pointCount, int conicCount, argument
325 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
339 fVerbCnt = verbCount;
344 fVerbCnt = verbCount;

Completed in 102 milliseconds