Lines Matching refs:uint64_t
48 __rem = ((uint64_t)(n)) % __base; \
49 (n) = ((uint64_t)(n)) / __base; \
76 uint64_t ___res, ___x, ___t, ___m, ___n = (n); \
171 static inline uint64_t __arch_xprod_64(const uint64_t m, uint64_t n, bool bias) in __arch_xprod_64()
177 uint64_t res; in __arch_xprod_64()
181 res = ((uint64_t)m_lo * n_lo) >> 32; in __arch_xprod_64()
184 res = (m + (uint64_t)m_lo * n_lo) >> 32; in __arch_xprod_64()
186 res = m + (uint64_t)m_lo * n_lo; in __arch_xprod_64()
189 res = res_lo | ((uint64_t)res_hi << 32); in __arch_xprod_64()
194 res += (uint64_t)m_lo * n_hi; in __arch_xprod_64()
195 res += (uint64_t)m_hi * n_lo; in __arch_xprod_64()
198 res += (uint64_t)m_lo * n_hi; in __arch_xprod_64()
200 res += (uint64_t)m_hi * n_lo; in __arch_xprod_64()
203 res = res_lo | ((uint64_t)res_hi << 32); in __arch_xprod_64()
206 res += (uint64_t)m_hi * n_hi; in __arch_xprod_64()
213 extern uint32_t __div64_32(uint64_t *dividend, uint32_t divisor);
222 (void)(((typeof((n)) *)0) == ((uint64_t *)0)); \