Lines Matching refs:sNumer
92 SkScalar sNumer, tNumer; in compute_intersection() local
120 sNumer = 0; in compute_intersection()
123 sNumer = v0.dot(w); in compute_intersection()
126 if (outside_interval(sNumer, denom, true)) { in compute_intersection()
134 SkScalar oldSNumer = sNumer; in compute_intersection()
135 sNumer = v0.dot(w + v1); in compute_intersection()
137 if (outside_interval(sNumer, denom, true)) { in compute_intersection()
140 if (sNumer*oldSNumer > 0) { in compute_intersection()
144 sNumer = 0; in compute_intersection()
151 sNumer = w.cross(v1); in compute_intersection()
152 if (outside_interval(sNumer, denom, denomPositive)) { in compute_intersection()
161 SkScalar localS = sNumer/denom; in compute_intersection()