Home
last modified time | relevance | path

Searched refs:midIndex (Results 1 – 4 of 4) sorted by relevance

/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DSegmentBase.java168 long midIndex = lowIndex + (highIndex - lowIndex) / 2; in getSegmentNum() local
169 long midTimeUs = getSegmentTimeUs(midIndex); in getSegmentNum()
171 lowIndex = midIndex + 1; in getSegmentNum()
173 highIndex = midIndex - 1; in getSegmentNum()
175 return midIndex; in getSegmentNum()
/external/guava/guava-tests/test/com/google/common/math/
DQuantilesAlgorithm.java161 int midIndex = (from + to) >>> 1; in select() local
166 swap(array, midIndex, from + 1); in select()
/external/guava/android/guava-tests/test/com/google/common/math/
DQuantilesAlgorithm.java161 int midIndex = (from + to) >>> 1; in select() local
166 swap(array, midIndex, from + 1); in select()
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/
DUtil.java894 int midIndex = (lowIndex + highIndex) >>> 1; in binarySearchFloor() local
895 if (longArray.get(midIndex) < value) { in binarySearchFloor()
896 lowIndex = midIndex + 1; in binarySearchFloor()
898 highIndex = midIndex - 1; in binarySearchFloor()