Searched refs:time1 (Results 1 – 3 of 3) sorted by relevance
614 uint32_t abs_difference(uint64_t time1, uint64_t time2) { in abs_difference() argument615 return time1 > time2 ? time1 - time2 : time2 - time1; in abs_difference()
454 private static boolean areSameDates(long time1, long time2) { in areSameDates() argument458 c1.setTimeInMillis(time1); in areSameDates()
154 long time1 = System.currentTimeMillis(); in measureAllocationScore() local170 double speed = MIN_NUMBER_OF_SURFACES * 1000.0 / (time2 - time1); in measureAllocationScore()