Searched refs:s_hi (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnx2x/ |
H A D | bnx2x_stats.h | 342 #define ADD_64(s_hi, a_hi, s_lo, a_lo) \ 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) \ 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) \ 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) \ 365 d_hi = m_hi - s_hi; \ 371 /* m_hi <= s_hi */ \ 377 if (m_hi < s_hi) { \ [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/bnx2x/ |
H A D | bnx2x_stats.h | 348 #define ADD_64(s_hi, a_hi, s_lo, a_lo) \ 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) \ 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) \ 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) \ 371 d_hi = m_hi - s_hi; \ 377 /* m_hi <= s_hi */ \ 383 if (m_hi < s_hi) { \ [all...] |
/kernel/linux/linux-5.10/arch/powerpc/math-emu/ |
H A D | math_efp.c | 726 int s_lo, s_hi; in speround_handler() local 753 s_hi = current->thread.evr[fc] & SIGN_BIT_S; in speround_handler() 781 s_hi = 0; in speround_handler() 799 s_hi = current->thread.evr[fb] & SIGN_BIT_S; in speround_handler() 805 s_hi = s_lo; in speround_handler() 808 s_hi = current->thread.evr[fb] & SIGN_BIT_S; in speround_handler() 838 if (!s_hi) { in speround_handler() 845 if (s_hi) { in speround_handler() 858 if (hi_inexact && !s_hi) in speround_handler() 867 if (hi_inexact && s_hi) { in speround_handler() [all...] |
/kernel/linux/linux-6.6/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() [all...] |
Completed in 5 milliseconds