Lines Matching defs:pts
67 bool SkRect::setBoundsCheck(const SkPoint pts[], int count) {
68 SkASSERT((pts && count > 0) || count == 0);
77 min = max = Sk4s(pts->fX, pts->fY,
78 pts->fX, pts->fY);
79 pts += 1;
82 min = max = Sk4s::Load(pts);
83 pts += 2;
89 Sk4s xy = Sk4s::Load(pts);
93 pts += 2;
107 void SkRect::setBoundsNoCheck(const SkPoint pts[], int count) {
108 if (!this->setBoundsCheck(pts, count)) {