Searched refs:scaledTimestamps (Results 1 – 1 of 1) sorted by relevance
1146 long[] scaledTimestamps = new long[timestamps.size()]; in scaleLargeTimestamps() local1149 for (int i = 0; i < scaledTimestamps.length; i++) { in scaleLargeTimestamps()1150 scaledTimestamps[i] = timestamps.get(i) / divisionFactor; in scaleLargeTimestamps()1154 for (int i = 0; i < scaledTimestamps.length; i++) { in scaleLargeTimestamps()1155 scaledTimestamps[i] = timestamps.get(i) * multiplicationFactor; in scaleLargeTimestamps()1159 for (int i = 0; i < scaledTimestamps.length; i++) { in scaleLargeTimestamps()1160 scaledTimestamps[i] = (long) (timestamps.get(i) * multiplicationFactor); in scaleLargeTimestamps()1163 return scaledTimestamps; in scaleLargeTimestamps()