Searched refs:x_lo (Results 1 – 2 of 2) sorted by relevance
56 const u32 x_lo = (u32)(x >> 0); in nnmathMultiplyAndDivide() local60 + (s64)(r_hi) * x_lo ) in nnmathMultiplyAndDivide()61 + (((u64)(x_lo) * r_lo) >> 32); in nnmathMultiplyAndDivide()93 const u32 x_lo = (u32)(x >> 0); in nnmathMultiplyRate() local97 + (u64)(r_hi) * x_lo ) in nnmathMultiplyRate()98 + (((u64)(x_lo) * r_lo) >> 32); in nnmathMultiplyRate()104 const u32 x_lo = (u32)(x >> 0); in nnmathMultiplyRate32() local107 + (((u64)(x_lo) * rate) >> 32); in nnmathMultiplyRate32()
290 const u64 x_lo = x & 0xffffffff; in MultiplyRightShift() local296 const s64 z = x_hi * y_lo + ((x_lo * y_lo) >> 32); in MultiplyRightShift()300 return x_hi * y_hi + z_hi + (static_cast<s64>(x_lo * y_hi + z_lo) >> 32); in MultiplyRightShift()