Searched refs:dot1 (Results 1 – 5 of 5) sorted by relevance
123 float dot1 = dot(tan1, v); in is_convex_curve_monotonic() local127 float tolerance = -std::max(std::abs(dot0), std::abs(dot1)) * SK_ScalarNearlyZero; in is_convex_curve_monotonic()128 return dot0 >= tolerance && dot1 >= tolerance; in is_convex_curve_monotonic()
103 int dot1 = (point.x()-p1.x()) * (p2.y()-p1.y()) + (point.y()-p1.y()) * (p1.x()-p2.x()); in isInsideQuad() local107 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0); in isInsideQuad()
105 int dot1 = (point.x()-p1.x()) * (p2.y()-p1.y()) + (point.y()-p1.y()) * (p1.x()-p2.x()); in isInsideQuad() local109 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0); in isInsideQuad()
447 #define dot1(c) (*(c) == '.' && eocomp(c+1)) macro468 } else if (dot1(a)) { in pathcomp()481 #undef dot1
390 def FeatureDot1Insts : SubtargetFeature<"dot1-insts",