Searched refs:m_lo (Results 1 – 1 of 1) sorted by relevance
/linux-2.6.39/drivers/net/bnx2x/ |
D | bnx2x_stats.c | 34 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ argument 36 if (m_lo < s_lo) { \ 42 d_lo = m_lo + (UINT_MAX - s_lo) + 1; \ 56 d_lo = m_lo - s_lo; \ 115 #define SUB_64(m_hi, s_hi, m_lo, s_lo) \ argument 117 DIFF_64(m_hi, m_hi, s_hi, m_lo, m_lo, s_lo); \ 121 #define SUB_EXTEND_64(m_hi, m_lo, s) \ argument 123 SUB_64(m_hi, 0, m_lo, s); \
|