HomeSort by relevance Sort by last modified time
    Searched defs:timesA (Results 1 - 3 of 3) sorted by null

  /external/skia/tools/calmbench/
ab.py 55 timesA = {}
107 append_dict_sorted_array(timesA, bench, normalized_t)
223 for bench in timesA.keys():
226 lowerA, upperA = get_lower_upper(timesA[bench])
250 a = median(timesA[bench])
317 for bench in timesA:
322 "lower_quantile_ms": get_lower_upper(timesA[bench])[0] * 1e-6,
323 "upper_quantile_ms": get_lower_upper(timesA[bench])[1] * 1e-6
342 for bench in suspects + timesA.keys():
343 if (bench not in timesA or bench not in timesB)
    [all...]
  /external/skqp/tools/calmbench/
ab.py 55 timesA = {}
107 append_dict_sorted_array(timesA, bench, normalized_t)
223 for bench in timesA.keys():
226 lowerA, upperA = get_lower_upper(timesA[bench])
250 a = median(timesA[bench])
317 for bench in timesA:
322 "lower_quantile_ms": get_lower_upper(timesA[bench])[0] * 1e-6,
323 "upper_quantile_ms": get_lower_upper(timesA[bench])[1] * 1e-6
342 for bench in suspects + timesA.keys():
343 if (bench not in timesA or bench not in timesB)
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
BatteryStatsImplTest.java 286 long[] timesA = null;
288 assertNull(mBatteryStatsImpl.addCpuTimes(timesA, timesB));
290 timesA = new long[] {34, 23, 45, 24};
291 assertArrayEquals(timesA, mBatteryStatsImpl.addCpuTimes(timesA, timesB));
293 timesB = timesA;
294 timesA = null;
295 assertArrayEquals(timesB, mBatteryStatsImpl.addCpuTimes(timesA, timesB));
298 timesA = new long[timesB.length];
299 for (int i = 0; i < timesA.length; ++i)
    [all...]

Completed in 90 milliseconds