Searched refs:s_hi (Results 1 – 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_stats.h | 342 #define ADD_64(s_hi, a_hi, s_lo, a_lo) \ argument 345 s_hi += a_hi + ((s_lo < a_lo) ? 1 : 0); \ 352 #define ADD_64_LE(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 353 ADD_64(s_hi, le32_to_cpu(a_hi_le), \ 356 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 357 ADD_64(s_hi, le16_to_cpu(a_hi_le), \ 361 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ argument 365 d_hi = m_hi - s_hi; \ 377 if (m_hi < s_hi) { \ 382 d_hi = m_hi - s_hi; \ [all …]
|
/kernel/linux/linux-5.10/arch/powerpc/math-emu/ |
D | math_efp.c | 725 int s_lo, s_hi; in speround_handler() local 752 s_hi = current->thread.evr[fc] & SIGN_BIT_S; in speround_handler() 780 s_hi = 0; in speround_handler() 798 s_hi = current->thread.evr[fb] & SIGN_BIT_S; in speround_handler() 804 s_hi = s_lo; in speround_handler() 807 s_hi = current->thread.evr[fb] & SIGN_BIT_S; in speround_handler() 837 if (!s_hi) { in speround_handler() 844 if (s_hi) { in speround_handler() 857 if (hi_inexact && !s_hi) in speround_handler() 866 if (hi_inexact && s_hi) { in speround_handler()
|