Home | History | Annotate | Download | only in pathops

Lines Matching refs:tValue

72         double tValue = s[index];
73 if (approximately_zero_or_more(tValue) && approximately_one_or_less(tValue)) {
74 if (approximately_less_than_zero(tValue)) {
75 tValue = 0;
76 } else if (approximately_greater_than_one(tValue)) {
77 tValue = 1;
80 if (approximately_equal(t[idx2], tValue)) {
84 t[foundRoots++] = tValue;
322 int SkDQuad::FindExtrema(double a, double b, double c, double tValue[1]) {
326 return valid_unit_divide(a - b, a - b - b + c, tValue);