HomeSort by relevance Sort by last modified time
    Searched defs:best_j (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticIntersection_Test.cpp 359 int best_i = 1, best_j = 1; local
366 if (dist[best_i][best_j] > dist[i][j]) {
368 best_j = j;
377 if (best_j == 0) {
379 } else if (best_j == 2) {
382 if (best_i == 1 && best_j == 1) {
CubicIntersection_Test.cpp 635 int best_i = 1, best_j = 1; local
642 if (dist[best_i][best_j] > dist[i][j]) {
644 best_j = j;
653 if (best_j == 0) {
655 } else if (best_j == 2) {
658 if (best_i == 1 && best_j == 1) {
  /external/chromium_org/third_party/skia/tests/
PathOpsQuadIntersectionTest.cpp 429 int best_i = 1, best_j = 1; local
436 if (dist[best_i][best_j] > dist[i][j]) {
438 best_j = j;
447 if (best_j == 0) {
449 } else if (best_j == 2) {
452 if (best_i == 1 && best_j == 1) {
PathOpsCubicIntersectionTest.cpp 461 int best_i = 1, best_j = 1; local
468 if (dist[best_i][best_j] > dist[i][j]) {
470 best_j = j;
479 if (best_j == 0) {
481 } else if (best_j == 2) {
484 if (best_i == 1 && best_j == 1) {
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 318 int best_i = 1, best_j = 1; local
325 if (dist[best_i][best_j] > dist[i][j]) {
327 best_j = j;
331 if (best_i == 1 && best_j == 1) {
352 if (best_j == 0) {
357 } else if (best_j == 2) {

Completed in 108 milliseconds