Home | History | Annotate | Download | only in os

Lines Matching refs:N2

360         final int N2 = other.mNum;
365 while (i1 < N1 && i2 < N2) {
367 + " of " + N2);
393 final int N2 = other.mNum;
399 while (i1 < N1 && i2 < N2) {
401 + " of " + N2 + ": " + uids1[i1] + " " + names1[i1]);
454 final int N2 = other.mNum;
460 while (i1 < N1 || i2 < N2) {
462 + " of " + N2);
463 if (i1 >= N1 || (i2 < N2 && uids2[i2] < uids1[i1])) {
491 if (i2 < N2 && uids2[i2] == uids1[i1]) {
498 while (i1 < N1 && (i2 >= N2 || uids2[i2] > uids1[i1])) {
509 if (i1 < N1 && i2 < N2 && uids2[i2] == uids1[i1]) {
544 final int N2 = other.mNum;
551 while (i1 < mNum || i2 < N2) {
553 + " of " + N2);
555 if (i1 >= mNum || (i2 < N2 && (diff=compare(other, i1, i2)) > 0)) {
569 if (i2 < N2 && diff == 0) {
584 diff = i2 < N2 ? compare(other, i1, i2) : -1;