Searched refs:dstMin (Results 1 – 1 of 1) sorted by relevance
2993 int dstMin = dstVolumeInfo.getMinVolumeIndex(); in rescaleIndex() local2996 if (dstMin == VolumeInfo.INDEX_NOT_SET || dstMax == VolumeInfo.INDEX_NOT_SET) { in rescaleIndex()3001 dstMin, dstMax); in rescaleIndex()3010 private int rescaleIndex(int index, int srcMin, int srcMax, int dstMin, int dstMax) { in rescaleIndex() argument3012 int dstRange = dstMax - dstMin; in rescaleIndex()3015 return dstMin; in rescaleIndex()3017 return dstMin + ((index - srcMin) * dstRange + srcRange / 2) / srcRange; in rescaleIndex()