OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rootVals
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/experimental/Intersection/
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
...]
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
...]
/external/chromium_org/third_party/skia/src/pathops/
SkDCubicLineIntersection.cpp
128
double
rootVals
[3];
129
int roots = intersectRay(
rootVals
);
131
double cubicT =
rootVals
[index];
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];
Completed in 72 milliseconds