Searched refs:s_lo (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) \ 344 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) \ 354 s_lo, le32_to_cpu(a_lo_le)) 356 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ 358 s_lo, le16_to_cpu(a_lo_le)) 361 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ 363 if (m_lo < s_lo) { \ 369 d_lo = m_lo + (UINT_MAX - s_lo) [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) \ 350 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) \ 360 s_lo, le32_to_cpu(a_lo_le)) 362 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ 364 s_lo, le16_to_cpu(a_lo_le)) 367 #define DIFF_64(d_hi, m_hi, s_hi, d_lo, m_lo, s_lo) \ 369 if (m_lo < s_lo) { \ 375 d_lo = m_lo + (UINT_MAX - s_lo) [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 752 s_lo = regs->gpr[fc] & SIGN_BIT_S; in speround_handler() 780 s_lo = 0; in speround_handler() 789 s_lo = regs->gpr[fb] & SIGN_BIT_S; in speround_handler() 797 s_lo = regs->gpr[fb] & SIGN_BIT_S; in speround_handler() 805 s_hi = s_lo; in speround_handler() 825 if (!s_lo) fgpr.wp[1]++; /* Z > 0, choose Z1 */ in speround_handler() 827 if (s_lo) { in speround_handler() 856 if (lo_inexact && !s_lo) in speround_handler() 861 if (lo_inexact && s_lo) { 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 755 s_lo = regs->gpr[fc] & SIGN_BIT_S; in speround_handler() 783 s_lo = 0; in speround_handler() 792 s_lo = regs->gpr[fb] & SIGN_BIT_S; in speround_handler() 800 s_lo = regs->gpr[fb] & SIGN_BIT_S; in speround_handler() 808 s_hi = s_lo; in speround_handler() 828 if (!s_lo) fgpr.wp[1]++; /* Z > 0, choose Z1 */ in speround_handler() 830 if (s_lo) { in speround_handler() 859 if (lo_inexact && !s_lo) in speround_handler() 864 if (lo_inexact && s_lo) { in speround_handler() [all...] |
Completed in 4 milliseconds