Lines Matching defs:count
67 bool SkRect::setBoundsCheck(const SkPoint pts[], int count) {
68 SkASSERT((pts && count > 0) || count == 0);
70 if (count <= 0) {
76 if (count & 1) {
80 count -= 1;
84 count -= 2;
88 while (count) {
94 count -= 2;
107 void SkRect::setBoundsNoCheck(const SkPoint pts[], int count) {
108 if (!this->setBoundsCheck(pts, count)) {