Lines Matching refs:j
37 for (int j = 0; j < i; j++) { in bubble()
38 if (a[j] > a[j+1]) { in bubble()
39 int tmp = a[j]; in bubble()
40 a[j] = a[j+1]; in bubble()
41 a[j+1] = tmp; in bubble()
331 for (int j = Integer.MIN_VALUE + 4; j < i - 5; j++) { in justRightTriangular1()
332 sResult += a[j - (Integer.MIN_VALUE + 4)]; in justRightTriangular1()
346 for (int j = 4; j < i - 5; j++) { in justRightTriangular2()
347 sResult += a[j - 4]; in justRightTriangular2()
363 for (int j = 4; j < i - 5; j++) { in justOOBTriangular()
364 sResult += a[j - 4]; in justOOBTriangular()
383 for (int j = 4; j < i - 5; j++) { in hiddenOOB1()
384 sResult += a[j - 4]; in hiddenOOB1()
403 for (int j = 6; j > i + 5; j--) { in hiddenOOB2()
404 sResult += a[j - 6]; in hiddenOOB2()
423 for (int j = i + 1; j < 1; j++) { in hiddenOOB3()
424 sResult += a[j]; in hiddenOOB3()
443 for (int j = -3; j <= 2147483646 * i - 3; j++) { in hiddenInfiniteOOB()
444 sResult += a[j + 3]; in hiddenInfiniteOOB()
462 for (int j = -4; j < 2147483646 * i - 3; j++) { in hiddenFiniteOOB()
463 sResult += a[j + 4]; in hiddenFiniteOOB()
527 for (int j = 0; j <= 1; j++) { in doNotHoist()
545 for (int j = 0; j <= 6; j++) { in add()
546 a[i + j] += 1; in add()
562 for (int j = 0; j <= 3; j++) { in multiply1()
564 a[i * j] += 1; in multiply1()
585 for (int j = -3; j <= 3; j++) { in multiply2()
587 a[i * j] += 1; in multiply2()
776 for (int j = i - 2; j <= i + 2; j++) { in dynamicBCEConstantRange()
777 result += x[j]; in dynamicBCEConstantRange()