Searched refs:dstMin (Results 1 – 1 of 1) sorted by relevance
2793 int dstMin = dstVolumeInfo.getMinVolumeIndex(); in rescaleIndex() local2796 if (dstMin == VolumeInfo.INDEX_NOT_SET || dstMax == VolumeInfo.INDEX_NOT_SET) { in rescaleIndex()2801 dstMin, dstMax); in rescaleIndex()2810 private int rescaleIndex(int index, int srcMin, int srcMax, int dstMin, int dstMax) { in rescaleIndex() argument2812 int dstRange = dstMax - dstMin; in rescaleIndex()2815 return dstMin; in rescaleIndex()2817 return dstMin + ((index - srcMin) * dstRange + srcRange / 2) / srcRange; in rescaleIndex()