Searched refs:s_hi (Results 1 – 2 of 2) sorted by relevance
/linux/drivers/net/ethernet/broadcom/bnx2x/ |
H A D | bnx2x_stats.h | 348 #define ADD_64(s_hi, a_hi, s_lo, a_lo) \ argument 351 s_hi += a_hi + ((s_lo < a_lo) ? 1 : 0); \ 358 #define ADD_64_LE(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 359 ADD_64(s_hi, le32_to_cpu(a_hi_le), \ 362 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 363 ADD_64(s_hi, le16_to_cpu(a_hi_le), \ 367 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ argument 371 d_hi = m_hi - s_hi; \ 383 if (m_hi < s_hi) { \ 388 d_hi = m_hi - s_hi; \ [all …]
|
/linux/arch/powerpc/math-emu/ |
H A D | math_efp.c | 729 int s_lo, s_hi; in speround_handler() local 756 s_hi = current->thread.evr[fc] & SIGN_BIT_S; in speround_handler() 784 s_hi = 0; in speround_handler() 802 s_hi = current->thread.evr[fb] & SIGN_BIT_S; in speround_handler() 808 s_hi = s_lo; in speround_handler() 811 s_hi = current->thread.evr[fb] & SIGN_BIT_S; in speround_handler() 841 if (!s_hi) { in speround_handler() 848 if (s_hi) { in speround_handler() 861 if (hi_inexact && !s_hi) in speround_handler() 870 if (hi_inexact && s_hi) { in speround_handler()
|