Home
last modified time | relevance | path

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

/include/zfs/
A Dspa.h16 #define BF32_DECODE(x, low, len) P2PHASE((x) >> (low), 1U << (len)) argument
17 #define BF64_DECODE(x, low, len) P2PHASE((x) >> (low), 1ULL << (len)) argument
18 #define BF32_ENCODE(x, low, len) (P2PHASE((x), 1U << (len)) << (low)) argument
19 #define BF64_ENCODE(x, low, len) (P2PHASE((x), 1ULL << (len)) << (low)) argument
21 #define BF32_GET(x, low, len) BF32_DECODE(x, low, len) argument
22 #define BF64_GET(x, low, len) BF64_DECODE(x, low, len) argument
24 #define BF32_SET(x, low, len, val) \ argument
25 ((x) ^= BF32_ENCODE((x >> low) ^ (val), low, len))
26 #define BF64_SET(x, low, len, val) \ argument
27 ((x) ^= BF64_ENCODE((x >> low) ^ (val), low, len))
[all …]
/include/linux/
A Dmath64.h192 u32 high, low; in mul_u64_u64_shr() member
194 u32 low, high; in mul_u64_u64_shr()
203 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr()
204 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr()
205 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr()
213 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr()
214 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr()
238 u32 high, low; in mul_u64_u32_div() member
240 u32 low, high; in mul_u64_u32_div()
246 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div()
[all …]

Completed in 11 milliseconds