Searched refs:s_hi (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 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 517 ADD_64(s_hi, le32toh(a_hi_le), \ 520 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 521 ADD_64(s_hi, le16toh(a_hi_le), \ 525 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ argument 529 d_hi = m_hi - s_hi; \ 541 if (m_hi < s_hi) { \ 546 d_hi = m_hi - s_hi; \ [all …]
|