Lines Matching refs:one
64 int SkIntersections::insert(double one, double two, const SkDPoint& pt) {
65 if (fIsCoincident[0] == 3 && between(fT[0][0], one, fT[0][1])) {
74 if (one == oldOne && two == oldTwo) {
77 if (more_roughly_equal(oldOne, one) && more_roughly_equal(oldTwo, two)) {
78 if ((precisely_zero(one) && !precisely_zero(oldOne))
79 || (precisely_equal(one, 1) && !precisely_equal(oldOne, 1))
82 fT[0][index] = one;
90 SkDebugf("%s t=%1.9g pts roughly equal\n", __FUNCTION__, one);
93 if (fT[0][index] > one) {
114 fT[0][index] = one;
120 void SkIntersections::insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2) {
121 SkASSERT(one == 0 || one == 1);
124 SkASSERT(fNearlySame[(int) one]);
125 (void) insert(one, two, pt1);
126 fPt2[one ? fUsed - 1 : 0] = pt2;
129 void SkIntersections::insertCoincident(double one, double two, const SkDPoint& pt) {
130 int index = insertSwap(one, two, pt);