Searched refs:midIndex (Results 1 – 4 of 4) sorted by relevance
168 long midIndex = lowIndex + (highIndex - lowIndex) / 2; in getSegmentNum() local169 long midTimeUs = getSegmentTimeUs(midIndex); in getSegmentNum()171 lowIndex = midIndex + 1; in getSegmentNum()173 highIndex = midIndex - 1; in getSegmentNum()175 return midIndex; in getSegmentNum()
161 int midIndex = (from + to) >>> 1; in select() local166 swap(array, midIndex, from + 1); in select()
894 int midIndex = (lowIndex + highIndex) >>> 1; in binarySearchFloor() local895 if (longArray.get(midIndex) < value) { in binarySearchFloor()896 lowIndex = midIndex + 1; in binarySearchFloor()898 highIndex = midIndex - 1; in binarySearchFloor()