Home | History | Annotate | Download | only in jsr166

Lines Matching refs:endpoints

831         int[] endpoints = new int[2];
832 endpoints[0] = min + rnd.nextInt(rangeSize);
833 endpoints[1] = min + rnd.nextInt(rangeSize);
834 Arrays.sort(endpoints);
839 endpoints[0], lowIncl, endpoints[1], highIncl);
841 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1),
842 endpoints[1] - (highIncl ? 0 : 1), true, bs);
844 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1),
845 endpoints[1] - (highIncl ? 0 : 1), false, bs);
848 endpoints[1], highIncl, endpoints[0], lowIncl);
850 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1),
851 endpoints[1] - (highIncl ? 0 : 1), false, bs);
853 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1),
854 endpoints[1] - (highIncl ? 0 : 1), true, bs);