/external/chromium_org/third_party/skia/experimental/Intersection/ |
Extrema.h | 8 int findExtrema(double a, double b, double c, double tValue[1]);
|
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...] |
Extrema.cpp | 75 int findExtrema(double a, double b, double c, double tValue[1]) 80 return validUnitDivide(a - b, a - b - b + c, tValue);
|
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/ |
Extrema.h | 8 int findExtrema(double a, double b, double c, double tValue[1]);
|
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...] |
Extrema.cpp | 75 int findExtrema(double a, double b, double c, double tValue[1]) 80 return validUnitDivide(a - b, a - b - b + c, tValue);
|
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...] |
SkPathOpsQuad.h | 40 static int FindExtrema(double a, double b, double c, double tValue[1]);
|
SkPathOpsCubic.h | 39 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 | 39 static int FindExtrema(double a, double b, double c, double d, double tValue[2]);
|
/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...] |