Home | History | Annotate | Download | only in Intersection

Lines Matching defs:factors

51  // result1 and result2 are the same. 102 factors:
156 const int factors = 8;
160 int n[factors]; // 0 or power of a (1, 2, or 3) for a through h
231 if (x < 'a' || x > 'a' + factors) {
261 match(str, len, c[xx_coeff], "x^2"); // 7 factors
262 match(str, len, c[xy_coeff], "x y"); // 8 factors
263 match(str, len, c[yy_coeff], "y^2"); // 7 factors
264 match(str, len, c[x_coeff], "x"); // 21 factors
265 match(str, len, c[y_coeff], "y"); // 21 factors
266 match(str, len, c[c_coeff], ""); // 34 factors : total 102
270 int count[factors][factors][factors];
309 for (int x = 0; x < factors; ++x) {
323 for (int y = x; y < factors; ++y) {
330 for (int z = y; z < factors; ++z) {
362 for (int x = 0; x < factors; ++x) {
363 for (int y = x; y < factors; ++y) {
364 for (int z = y; z < factors; ++z) {