Searched refs:x_hi (Results 1 – 2 of 2) sorted by relevance
55 const s32 x_hi = (s32)(x >> 32); in nnmathMultiplyAndDivide() local58 return (((s64)(x_hi) * r_hi) << 32) in nnmathMultiplyAndDivide()59 + ( (s64)(x_hi) * r_lo in nnmathMultiplyAndDivide()92 const s32 x_hi = (u32)(x >> 32); in nnmathMultiplyRate() local95 return (((u64)(x_hi) * r_hi) << 32) in nnmathMultiplyRate()96 + ( (u64)(x_hi) * r_lo in nnmathMultiplyRate()103 const s32 x_hi = (u32)(x >> 32); in nnmathMultiplyRate32() local106 return (u64)(x_hi) * rate in nnmathMultiplyRate32()
291 const s64 x_hi = x >> 32; 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()