HomeSort by relevance Sort by last modified time
    Searched refs:rootVals (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/experimental/Intersection/
LineQuadraticIntersection.cpp 132 double rootVals[2];
133 int roots = intersectRay(rootVals);
135 double quadT = rootVals[index];
158 double rootVals[2];
159 int roots = horizontalIntersect(axisIntercept, rootVals);
162 double quadT = rootVals[index];
187 double rootVals[2];
188 int roots = verticalIntersect(axisIntercept, rootVals);
191 double quadT = rootVals[index];
297 double rootVals[2]
    [all...]
LineCubicIntersection.cpp 104 double rootVals[3];
105 int roots = intersectRay(rootVals);
107 double cubicT = rootVals[index];
127 double rootVals[3];
128 int roots = horizontalIntersect(axisIntercept, rootVals);
131 double cubicT = rootVals[index];
153 double rootVals[3];
154 int roots = verticalIntersect(axisIntercept, rootVals);
157 double cubicT = rootVals[index];
262 double rootVals[3]
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadLineIntersection.cpp 146 double rootVals[2];
147 int roots = intersectRay(rootVals);
149 double quadT = rootVals[index];
175 double rootVals[2];
176 int roots = horizontalIntersect(axisIntercept, rootVals);
178 double quadT = rootVals[index];
206 double rootVals[2];
207 int roots = verticalIntersect(axisIntercept, rootVals);
209 double quadT = rootVals[index];
SkDCubicLineIntersection.cpp 128 double rootVals[3];
129 int roots = intersectRay(rootVals);
131 double cubicT = rootVals[index];

Completed in 574 milliseconds