Home
last modified time | relevance | path

Searched refs:x_hi (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Misccellaneous.h55 const s32 x_hi = (s32)(x >> 32); in nnmathMultiplyAndDivide() local
58 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() local
95 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() local
106 return (u64)(x_hi) * rate in nnmathMultiplyRate32()
/CTR-SDK-4.2.5/include/nn/fnd/
Dfnd_TimeSpan.h291 const s64 x_hi = x >> 32; in MultiplyRightShift() local
296 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()