Lines Matching refs:diff
281 TcpStats diff = {
290 // Update socket stats with the newest entry, computing the diff w.r.t the previous entry.
295 .sent = diff.sent,
296 .lost = diff.lost,
302 diff.sent -= previous.sent;
303 diff.lost -= previous.lost;
307 // Aggregate the diff per network id.
309 stats.sent += diff.sent;
310 stats.lost += diff.lost;
311 stats.rttUs += diff.rttUs;
312 stats.sentAckDiffMs += diff.sentAckDiffMs;
313 stats.nSockets += diff.nSockets;