Lines Matching refs:sNumer
99 SkScalar sNumer, tNumer; in compute_intersection() local
130 sNumer = 0; in compute_intersection()
133 sNumer = v0.dot(w); in compute_intersection()
136 if (outside_interval(sNumer, denom, true)) { in compute_intersection()
145 SkScalar oldSNumer = sNumer; in compute_intersection()
146 sNumer = v0.dot(w + v1); in compute_intersection()
148 if (outside_interval(sNumer, denom, true)) { in compute_intersection()
151 if (sNumer*oldSNumer > 0) { in compute_intersection()
155 sNumer = 0; in compute_intersection()
162 sNumer = w.cross(v1); in compute_intersection()
163 if (outside_interval(sNumer, denom, denomPositive)) { in compute_intersection()
172 SkScalar localS = sNumer/denom; in compute_intersection()