OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tValue
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticReduceOrder.cpp
26
double
tValue
;
34
if (findExtrema(quad[0].y, quad[1].y, quad[2].y, &
tValue
)) {
35
double yExtrema = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y,
tValue
);
47
double
tValue
;
55
if (findExtrema(quad[0].x, quad[1].x, quad[2].x, &
tValue
)) {
56
double xExtrema = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x,
tValue
);
96
double
tValue
;
99
root = findExtrema(quad[0].x, quad[1].x, quad[2].x, &
tValue
);
101
root = findExtrema(quad[0].y, quad[1].y, quad[2].y, &
tValue
);
105
extrema.x = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x,
tValue
);
[
all
...]
QuadraticUtilities.cpp
80
double
tValue
= s[index];
81
if (approximately_zero_or_more(
tValue
) && approximately_one_or_less(
tValue
)) {
82
if (approximately_less_than_zero(
tValue
)) {
83
tValue
= 0;
84
} else if (approximately_greater_than_one(
tValue
)) {
85
tValue
= 1;
88
if (approximately_equal(t[idx2],
tValue
)) {
92
t[foundRoots++] =
tValue
;
/external/skia/experimental/Intersection/
QuadraticReduceOrder.cpp
26
double
tValue
;
34
if (findExtrema(quad[0].y, quad[1].y, quad[2].y, &
tValue
)) {
35
double yExtrema = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y,
tValue
);
47
double
tValue
;
55
if (findExtrema(quad[0].x, quad[1].x, quad[2].x, &
tValue
)) {
56
double xExtrema = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x,
tValue
);
96
double
tValue
;
99
root = findExtrema(quad[0].x, quad[1].x, quad[2].x, &
tValue
);
101
root = findExtrema(quad[0].y, quad[1].y, quad[2].y, &
tValue
);
105
extrema.x = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x,
tValue
);
[
all
...]
QuadraticUtilities.cpp
80
double
tValue
= s[index];
81
if (approximately_zero_or_more(
tValue
) && approximately_one_or_less(
tValue
)) {
82
if (approximately_less_than_zero(
tValue
)) {
83
tValue
= 0;
84
} else if (approximately_greater_than_one(
tValue
)) {
85
tValue
= 1;
88
if (approximately_equal(t[idx2],
tValue
)) {
92
t[foundRoots++] =
tValue
;
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsQuad.cpp
72
double
tValue
= s[index];
73
if (approximately_zero_or_more(
tValue
) && approximately_one_or_less(
tValue
)) {
74
if (approximately_less_than_zero(
tValue
)) {
75
tValue
= 0;
76
} else if (approximately_greater_than_one(
tValue
)) {
77
tValue
= 1;
80
if (approximately_equal(t[idx2],
tValue
)) {
84
t[foundRoots++] =
tValue
;
322
int SkDQuad::FindExtrema(double a, double b, double c, double
tValue
[1])
[
all
...]
/external/skia/src/pathops/
SkPathOpsQuad.cpp
72
double
tValue
= s[index];
73
if (approximately_zero_or_more(
tValue
) && approximately_one_or_less(
tValue
)) {
74
if (approximately_less_than_zero(
tValue
)) {
75
tValue
= 0;
76
} else if (approximately_greater_than_one(
tValue
)) {
77
tValue
= 1;
80
if (approximately_equal(t[idx2],
tValue
)) {
84
t[foundRoots++] =
tValue
;
322
int SkDQuad::FindExtrema(double a, double b, double c, double
tValue
[1])
[
all
...]
/external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp
244
int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar
tValue
[1]) {
248
return valid_unit_divide(a - b, a - b - b + c,
tValue
);
267
SkScalar
tValue
;
268
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
)) {
269
SkChopQuadAt(src, dst,
tValue
);
295
SkScalar
tValue
;
296
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
)) {
297
SkChopQuadAt(src, dst,
tValue
);
492
even though the 2nd
tValue
looks < 1.0, after we renormalize it, we end
[
all
...]
/external/skia/src/core/
SkGeometry.cpp
244
int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar
tValue
[1]) {
248
return valid_unit_divide(a - b, a - b - b + c,
tValue
);
267
SkScalar
tValue
;
268
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
)) {
269
SkChopQuadAt(src, dst,
tValue
);
295
SkScalar
tValue
;
296
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
)) {
297
SkChopQuadAt(src, dst,
tValue
);
492
even though the 2nd
tValue
looks < 1.0, after we renormalize it, we end
[
all
...]
Completed in 1540 milliseconds