Searched refs:tValue (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsQuad.cpp72 double tValue = s[index]; local
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[ argument
[all...]
H A DSkPathOpsQuad.h40 static int FindExtrema(double a, double b, double c, double tValue[1]);
H A DSkPathOpsCubic.h44 static int FindExtrema(double a, double b, double c, double d, double tValue[2]);
/external/skia/src/pathops/
H A DSkPathOpsQuad.cpp72 double tValue = s[index]; local
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[ argument
[all...]
H A DSkPathOpsQuad.h40 static int FindExtrema(double a, double b, double c, double tValue[1]);
H A DSkPathOpsCubic.h44 static int FindExtrema(double a, double b, double c, double d, double tValue[2]);
/external/chromium_org/third_party/skia/src/core/
H A DSkGeometry.cpp295 int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar tValue[1]) argument
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; local
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 look
[all...]
/external/skia/src/core/
H A DSkGeometry.cpp295 int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar tValue[1]) argument
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; local
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 look
[all...]

Completed in 206 milliseconds