Searched refs:s_lo (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 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) \ argument 354 s_lo, le32_to_cpu(a_lo_le)) 356 #define ADD_64_LE16(s_hi, a_hi_le, s_lo, a_lo_le) \ argument 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) \ argument 363 if (m_lo < s_lo) { \ 369 d_lo = m_lo + (UINT_MAX - s_lo) + 1; \ [all …]
|
/kernel/linux/linux-5.10/arch/powerpc/math-emu/ |
D | math_efp.c | 725 int s_lo, s_hi; in speround_handler() local 751 s_lo = regs->gpr[fc] & SIGN_BIT_S; in speround_handler() 779 s_lo = 0; in speround_handler() 788 s_lo = regs->gpr[fb] & SIGN_BIT_S; in speround_handler() 796 s_lo = regs->gpr[fb] & SIGN_BIT_S; in speround_handler() 804 s_hi = s_lo; in speround_handler() 824 if (!s_lo) fgpr.wp[1]++; /* Z > 0, choose Z1 */ in speround_handler() 826 if (s_lo) { in speround_handler() 855 if (lo_inexact && !s_lo) in speround_handler() 860 if (lo_inexact && s_lo) { in speround_handler()
|