Searched refs:ll (Results 1 – 5 of 5) sorted by relevance
/include/linux/ |
D | math64.h | 196 u64 ll; in mul_u64_u64_shr() member 207 a0.ll = a; in mul_u64_u64_shr() 208 b0.ll = b; in mul_u64_u64_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() 229 return rl.ll; in mul_u64_u64_shr() 231 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr() 232 return rh.ll >> (shift & 63); in mul_u64_u64_shr() [all …]
|
D | math.h | 38 #define DIV_ROUND_DOWN_ULL(ll, d) \ argument 39 ({ unsigned long long _tmp = (ll); do_div(_tmp, d); _tmp; }) 41 #define DIV_ROUND_UP_ULL(ll, d) \ argument 42 DIV_ROUND_DOWN_ULL((unsigned long long)(ll) + (d) - 1, (d)) 45 # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP_ULL(ll, d) argument 47 # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP(ll,d) argument
|
D | libgcc.h | 27 long long ll; member
|
/include/linux/sunrpc/ |
D | cache.h | 288 long long ll; in get_time() local 296 if (kstrtoll(buf, 0, &ll)) in get_time() 299 *time = ll; in get_time()
|
/include/uapi/linux/ |
D | soundcard.h | 1179 {int ii, ll=(len); \ 1181 if (ll>6)ll=6;\ 1185 for(ii=0;ii<ll;ii++)\ 1187 for(ii=ll;ii<6;ii++)\
|