OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tValue
(Results
1 - 8
of
8
) sorted by null
/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
...]
SkPathOpsQuad.h
40
static int FindExtrema(double a, double b, double c, double
tValue
[1]);
SkPathOpsCubic.h
44
static int FindExtrema(double a, double b, double c, double d, double
tValue
[2]);
/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
...]
SkPathOpsQuad.h
40
static int FindExtrema(double a, double b, double c, double
tValue
[1]);
SkPathOpsCubic.h
44
static int FindExtrema(double a, double b, double c, double d, double
tValue
[2]);
/external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp
295
int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar
tValue
[1])
301
return is_not_monotonic(a, b, c) && valid_unit_divide(a - b, a - b - b + c,
tValue
);
303
return valid_unit_divide(a - b, a - b - b + c,
tValue
);
339
SkScalar
tValue
;
340
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
))
342
SkChopQuadAt(src, dst,
tValue
);
369
SkScalar
tValue
;
370
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
)) {
371
SkChopQuadAt(src, dst,
tValue
);
601
even though the 2nd
tValue
looks < 1.0, after we renormalize it, we en
[
all
...]
/external/skia/src/core/
SkGeometry.cpp
295
int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar
tValue
[1])
301
return is_not_monotonic(a, b, c) && valid_unit_divide(a - b, a - b - b + c,
tValue
);
303
return valid_unit_divide(a - b, a - b - b + c,
tValue
);
339
SkScalar
tValue
;
340
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
))
342
SkChopQuadAt(src, dst,
tValue
);
369
SkScalar
tValue
;
370
if (valid_unit_divide(a - b, a - b - b + c, &
tValue
)) {
371
SkChopQuadAt(src, dst,
tValue
);
601
even though the 2nd
tValue
looks < 1.0, after we renormalize it, we en
[
all
...]
Completed in 694 milliseconds