epoch_start        55 net/ipv4/tcp_bic.c 	u32	epoch_start;	/* beginning of an epoch */
epoch_start        66 net/ipv4/tcp_bic.c 	ca->epoch_start = 0;
epoch_start        92 net/ipv4/tcp_bic.c 	if (ca->epoch_start == 0) /* record the beginning of an epoch */
epoch_start        93 net/ipv4/tcp_bic.c 		ca->epoch_start = tcp_jiffies32;
epoch_start       165 net/ipv4/tcp_bic.c 	ca->epoch_start = 0;	/* end of epoch */
epoch_start        93 net/ipv4/tcp_cubic.c 	u32	epoch_start;	/* beginning of an epoch */
epoch_start       114 net/ipv4/tcp_cubic.c 	ca->epoch_start = 0;
epoch_start       165 net/ipv4/tcp_cubic.c 		if (ca->epoch_start && delta > 0) {
epoch_start       166 net/ipv4/tcp_cubic.c 			ca->epoch_start += delta;
epoch_start       167 net/ipv4/tcp_cubic.c 			if (after(ca->epoch_start, now))
epoch_start       168 net/ipv4/tcp_cubic.c 				ca->epoch_start = now;
epoch_start       240 net/ipv4/tcp_cubic.c 	if (ca->epoch_start && tcp_jiffies32 == ca->last_time)
epoch_start       246 net/ipv4/tcp_cubic.c 	if (ca->epoch_start == 0) {
epoch_start       247 net/ipv4/tcp_cubic.c 		ca->epoch_start = tcp_jiffies32;	/* record beginning */
epoch_start       278 net/ipv4/tcp_cubic.c 	t = (s32)(tcp_jiffies32 - ca->epoch_start);
epoch_start       359 net/ipv4/tcp_cubic.c 	ca->epoch_start = 0;	/* end of epoch */
epoch_start       441 net/ipv4/tcp_cubic.c 	if (ca->epoch_start && (s32)(tcp_jiffies32 - ca->epoch_start) < HZ)