Lines Matching refs:tmax
109 /** Splits this curve into the subinterval [tmin,tmax]. */
110 void split(float tmin, float tmax, ScalarBezCurve* result) const {
112 const float tRel = tmin / tmax;
114 this->split(tmax, &rl, &rr);
289 float tmax,
300 result->push_back((tmin + tmax) * 0.5);
306 } else if (SkScalarNearlyZero(tmax - tmin)) {
312 const float tmid = (tmin + tmax) * 0.5;
314 ZeroSetRec(right, tmid, tmax, tol, result);
564 const float tmax = lenTraveled + verbLength;
568 fVarWidth.split(tmin, tmax, &partVarWidth);
569 fVarWidthInner.split(tmin, tmax, &partVarWidthInner);
1261 const float tmin = i * dt, tmax = (i + 1) * dt;
1263 E.split(tmax, &left, &right);
1264 const float tRel = tmin / tmax;