Home | History | Annotate | Download | only in core

Lines Matching refs:fPoints

93         SkPoint* points() { return fPathRef->fPoints; }
126 *pts = fPathRef->fPoints + oldPointCnt;
200 matrix.mapPoints((*dst)->fPoints, (*dst)->fPointCnt);
207 matrix.mapPoints((*dst)->fPoints, src.points(), src.fPointCnt);
222 buffer->read(ref->fPoints, pointCount * sizeof(SkPoint));
232 buffer->read(ref->fPoints, pointCount * sizeof(SkPoint));
268 sk_free(fPoints);
270 SkDEBUGCODE_X(fPoints = NULL;)
295 const SkPoint* points() const { this->validate(); return fPoints; }
364 buffer->write(fPoints, fPointCnt * sizeof(SkPoint));
378 buffer->write(fPoints, fPointCnt * sizeof(SkPoint));
390 fPoints = NULL;
402 memcpy(this->fPoints, ref.fPoints, ref.fPointCnt * sizeof(SkPoint));
430 sk_free(fPoints);
431 fPoints = NULL;
489 SkPoint* ret = fPoints + fPointCnt;
520 fPoints = reinterpret_cast<SkPoint*>(sk_realloc_throw(fPoints, newSize));
523 reinterpret_cast<intptr_t>(fPoints) + newSize - oldVerbSize);
525 reinterpret_cast<intptr_t>(fPoints) + oldSize - oldVerbSize);
527 fVerbs = reinterpret_cast<uint8_t*>(reinterpret_cast<intptr_t>(fPoints) + newSize);
544 return reinterpret_cast<intptr_t>(fVerbs) - reinterpret_cast<intptr_t>(fPoints);
572 SkASSERT(reinterpret_cast<intptr_t>(fVerbs) - reinterpret_cast<intptr_t>(fPoints) >= 0);
573 SkASSERT((NULL == fPoints) == (NULL == fVerbs));
574 SkASSERT(!(NULL == fPoints && 0 != fFreeSpace));
575 SkASSERT(!(NULL == fPoints && 0 != fFreeSpace));
576 SkASSERT(!(NULL == fPoints && fPointCnt));
586 SkPoint* fPoints; // points to begining of the allocation