Home | History | Annotate | Download | only in jsr166

Lines Matching refs:endpoints

833         int[] endpoints = new int[2];
834 endpoints[0] = min + rnd.nextInt(rangeSize);
835 endpoints[1] = min + rnd.nextInt(rangeSize);
836 Arrays.sort(endpoints);
841 endpoints[0], lowIncl, endpoints[1], highIncl);
843 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1),
844 endpoints[1] - (highIncl ? 0 : 1), true);
846 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1),
847 endpoints[1] - (highIncl ? 0 : 1), false);
850 endpoints[1], highIncl, endpoints[0], lowIncl);
852 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1),
853 endpoints[1] - (highIncl ? 0 : 1), false);
855 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1),
856 endpoints[1] - (highIncl ? 0 : 1), true);