Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Misccellaneous.h56 const u32 x_lo = (u32)(x >> 0); in nnmathMultiplyAndDivide() local
60 + (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() local
97 + (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() local
107 + (((u64)(x_lo) * rate) >> 32); in nnmathMultiplyRate32()
/CTR-SDK-4.2.5/include/nn/fnd/
Dfnd_TimeSpan.h290 const u64 x_lo = x & 0xffffffff; 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()