Home
last modified time | relevance | path

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

/linux-4.1.27/net/ipv4/
Dtcp_cubic.c93 u32 epoch_start; /* beginning of an epoch */ member
114 ca->epoch_start = 0; in bictcp_reset()
166 if (ca->epoch_start && delta > 0) { in bictcp_cwnd_event()
167 ca->epoch_start += delta; in bictcp_cwnd_event()
168 if (after(ca->epoch_start, now)) in bictcp_cwnd_event()
169 ca->epoch_start = now; in bictcp_cwnd_event()
241 if (ca->epoch_start && tcp_time_stamp == ca->last_time) in bictcp_update()
247 if (ca->epoch_start == 0) { in bictcp_update()
248 ca->epoch_start = tcp_time_stamp; /* record beginning */ in bictcp_update()
279 t = (s32)(tcp_time_stamp - ca->epoch_start); in bictcp_update()
[all …]
Dtcp_bic.c55 u32 epoch_start; /* beginning of an epoch */ member
66 ca->epoch_start = 0; in bictcp_reset()
93 if (ca->epoch_start == 0) /* record the beginning of an epoch */ in bictcp_update()
94 ca->epoch_start = tcp_time_stamp; in bictcp_update()
166 ca->epoch_start = 0; /* end of epoch */ in bictcp_recalc_ssthresh()
/linux-4.1.27/drivers/rtc/
Drtc-tps6586x.c61 unsigned long long epoch_start; member
91 seconds += rtc->epoch_start; in tps6586x_rtc_read_time()
106 if (seconds < rtc->epoch_start) { in tps6586x_rtc_set_time()
110 seconds -= rtc->epoch_start; in tps6586x_rtc_set_time()
171 if (alrm->enabled && (seconds < rtc->epoch_start)) { in tps6586x_rtc_set_alarm()
182 seconds -= rtc->epoch_start; in tps6586x_rtc_set_alarm()
228 seconds += rtc->epoch_start; in tps6586x_rtc_read_alarm()
264 rtc->epoch_start = mktime(2009, 1, 1, 0, 0, 0); in tps6586x_rtc_probe()