Home
last modified time | relevance | path

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

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DStat.java81 double[] dataCopied = Arrays.copyOf(data, data.length); in getStatWithOutlierRejection() local
82 Arrays.sort(dataCopied); in getStatWithOutlierRejection()
83 int medianIndex = dataCopied.length / 2; in getStatWithOutlierRejection()
85 if (dataCopied.length % 2 == 1) { in getStatWithOutlierRejection()
86 median = dataCopied[medianIndex]; in getStatWithOutlierRejection()
88 median = (dataCopied[medianIndex - 1] + dataCopied[medianIndex]) / 2.0; in getStatWithOutlierRejection()