Searched refs:s_lo (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/bxe/ |
H A D | bxe_stats.h | 506 #define ADD_64(s_hi, a_hi, s_lo, a_lo) \ argument 508 s_lo += a_lo; \ 509 s_hi += a_hi + ((s_lo < a_lo) ? 1 : 0); \ 516 #define ADD_64_LE(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 518 s_lo, le32toh(a_lo_le)) 520 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 522 s_lo, le16toh(a_lo_le)) 525 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ argument 527 if (m_lo < s_lo) { \ 533 d_lo = m_lo + (UINT_MAX - s_lo) + 1; \ [all …]
|