Home
last modified time | relevance | path

Searched refs:coeff_count (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/skia/experimental/Intersection/
DQuadraticParameterization.h23 coeff_count enumerator
26 double p[coeff_count];
DCubicParameterization_TestUtility.cpp6 static void parameter_coeffs(const Cubic& cubic, double coeffs[coeff_count]) { in parameter_coeffs() argument
32 for (int index = xx_coeff; index < coeff_count; ++index) { in parameter_coeffs()
39 double coeffs[coeff_count]; in point_on_parameterized_curve()
DCubicParameterizationCode.cpp174 coeff_count enumerator
256 n_coeffs c(coeff_count); in cubecode_test()
DCubicParameterization.cpp75 coeff_count enumerator
90 static void calc_ABCD(double a, double e, double p[coeff_count]) { in calc_ABCD() argument
416 double p[coeff_count]) { in calc_ABCD() argument
427 double p1[coeff_count]; // a'xxx , b'xxy , c'xyy , d'xx , e'xy , f'yy, etc. in implicit_matches()
428 double p2[coeff_count]; in implicit_matches()
473 for (int index = 0; index < coeff_count; ++index) { in implicit_matches()
DQuadraticParameterization.cpp100 for (int index = 0; index < coeff_count; ++index) { in implicit_match()
/external/skia/experimental/Intersection/
DQuadraticParameterization.h23 coeff_count enumerator
26 double p[coeff_count];
DCubicParameterization_TestUtility.cpp6 static void parameter_coeffs(const Cubic& cubic, double coeffs[coeff_count]) { in parameter_coeffs() argument
32 for (int index = xx_coeff; index < coeff_count; ++index) { in parameter_coeffs()
39 double coeffs[coeff_count]; in point_on_parameterized_curve()
DCubicParameterizationCode.cpp174 coeff_count enumerator
256 n_coeffs c(coeff_count); in cubecode_test()
DCubicParameterization.cpp75 coeff_count enumerator
90 static void calc_ABCD(double a, double e, double p[coeff_count]) { in calc_ABCD() argument
416 double p[coeff_count]) { in calc_ABCD() argument
427 double p1[coeff_count]; // a'xxx , b'xxy , c'xyy , d'xx , e'xy , f'yy, etc. in implicit_matches()
428 double p2[coeff_count]; in implicit_matches()
473 for (int index = 0; index < coeff_count; ++index) { in implicit_matches()
DQuadraticParameterization.cpp100 for (int index = 0; index < coeff_count; ++index) { in implicit_match()
/external/opencv/cxcore/src/
Dcxutils.cpp276 int step = 1, coeff_count; in cvSolveCubic() local
289 coeff_count = coeffs->rows + coeffs->cols - 1; in cvSolveCubic()
291 if( (coeffs->rows != 1 && coeffs->cols != 1) || (coeff_count != 3 && coeff_count != 4) ) in cvSolveCubic()
305 if( coeff_count == 4 ) in cvSolveCubic()
316 if( coeff_count == 4 ) in cvSolveCubic()