Searched defs:best_j (Results 1 - 2 of 2) sorted by relevance

/external/skia/tests/
H A DPathOpsCubicIntersectionTest.cpp430 int best_i = 1, best_j = 1; local
437 if (dist[best_i][best_j] > dist[i][j]) {
439 best_j = j;
448 if (best_j == 0) {
450 } else if (best_j == 2) {
453 if (best_i == 1 && best_j == 1) {
H A DPathOpsQuadIntersectionTest.cpp410 int best_i = 1, best_j = 1; local
417 if (dist[best_i][best_j] > dist[i][j]) {
419 best_j = j;
428 if (best_j == 0) {
430 } else if (best_j == 2) {
433 if (best_i == 1 && best_j == 1) {

Completed in 86 milliseconds