Lines Matching refs:appendPlan
135 final int[][] appendPlan=new int[PLAN_LENGTH][2];
136 for (int j=0;j<appendPlan.length;++j) {
137 appendPlan[j][0] = PerformanceTest.random.nextInt(PerformanceTest.lenCC);
138 appendPlan[j][1] = PerformanceTest.random.nextInt(PerformanceTest.lenCC - appendPlan[j][0]);
142 for (int k=20; k<=appendPlan.length; k+=20) {
147 stats0[j] = PerformanceTest.stringAppendTest(aChristmasCarol, appendPlan, k);
148 stats1[j] = PerformanceTest.stringBufferAppendTest(aChristmasCarol, appendPlan, k);
149 stats2[j] = PerformanceTest.ropeAppendTest(aChristmasCarol, appendPlan, k);
487 private static long ropeAppendTest(final String aChristmasCarol, final int[][] appendPlan, final int planLength) {
494 final int offset = appendPlan[j][0];
495 final int length = appendPlan[j][1];
622 private static long stringAppendTest(final String aChristmasCarol, final int[][] appendPlan, final int planLength) {
629 final int offset = appendPlan[j][0];
630 final int length = appendPlan[j][1];
638 private static long stringBufferAppendTest(final String aChristmasCarol, final int[][] appendPlan, final int planLength) {
645 final int offset = appendPlan[j][0];
646 final int length = appendPlan[j][1];