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

  /external/chromium_org/third_party/skia/include/core/
SkPathRef.h 318 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
320 void resetToSize(int verbCount, int pointCount, int conicCount,
329 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
343 fVerbCnt = verbCount;
348 fVerbCnt = verbCount;
  /external/skia/include/core/
SkPathRef.h 318 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
320 void resetToSize(int verbCount, int pointCount, int conicCount,
329 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
343 fVerbCnt = verbCount;
348 fVerbCnt = verbCount;
  /external/chromium_org/third_party/skia/src/core/
SkPathRef.cpp 137 int32_t verbCount, pointCount, conicCount;
139 !buffer->readS32(&verbCount) ||
146 ref->resetToSize(verbCount, pointCount, conicCount);
147 SkASSERT(verbCount == ref->countVerbs());
151 if (!buffer->read(ref->verbsMemWritable(), verbCount * sizeof(uint8_t)) ||
SkPath.cpp 326 int verbCount = fPathRef->countVerbs();
328 if (2 == verbCount) {
    [all...]
  /external/skia/src/core/
SkPathRef.cpp 137 int32_t verbCount, pointCount, conicCount;
139 !buffer->readS32(&verbCount) ||
146 ref->resetToSize(verbCount, pointCount, conicCount);
147 SkASSERT(verbCount == ref->countVerbs());
151 if (!buffer->read(ref->verbsMemWritable(), verbCount * sizeof(uint8_t)) ||
SkPath.cpp 326 int verbCount = fPathRef->countVerbs();
328 if (2 == verbCount) {
    [all...]

Completed in 787 milliseconds