Lines Matching refs:new_time
27 ktime_t current_time, threshold_time, new_time; in sparx5_new_base_time() local
33 new_time = org_base_time; in sparx5_new_base_time()
38 diff_time = threshold_time - new_time; in sparx5_new_base_time()
42 if (new_time >= threshold_time) { in sparx5_new_base_time()
43 *new_base_time = new_time; in sparx5_new_base_time()
57 if (new_time < threshold_time) { in sparx5_new_base_time()
58 new_time += cycle_time * nr_of_cycles_p2; in sparx5_new_base_time()
59 while (new_time < threshold_time) in sparx5_new_base_time()
60 new_time += cycle_time * nr_of_cycles_p2; in sparx5_new_base_time()
61 new_time -= cycle_time * nr_of_cycles_p2; in sparx5_new_base_time()
65 new_time += cycle_time; in sparx5_new_base_time()
66 *new_base_time = new_time; in sparx5_new_base_time()