Home
last modified time | relevance | path

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

/include/linux/
Dmath64.h147 #ifndef mul_u32_u32
151 static inline u64 mul_u32_u32(u32 a, u32 b) in mul_u32_u32() function
184 ret = mul_u32_u32(al, mul) >> shift; in mul_u64_u32_shr()
186 ret += mul_u32_u32(ah, mul) << (32 - shift); in mul_u64_u32_shr()
210 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr()
211 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr()
212 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr()
213 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr()
271 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div()
272 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div()