Searched refs:l (Results 1 – 11 of 11) sorted by relevance
| /include/asm-generic/ |
| A D | atomic-long.h | 29 atomic64_t *v = (atomic64_t *)l; in atomic_long_read() 133 #define atomic_long_inc_not_zero(l) atomic64_inc_not_zero((atomic64_t *)(l)) argument 148 atomic_t *v = (atomic_t *)l; in atomic_long_read() 155 atomic_t *v = (atomic_t *)l; in atomic_long_set() 162 atomic_t *v = (atomic_t *)l; in atomic_long_inc() 169 atomic_t *v = (atomic_t *)l; in atomic_long_dec() 176 atomic_t *v = (atomic_t *)l; in atomic_long_add() 183 atomic_t *v = (atomic_t *)l; in atomic_long_sub() 191 atomic_t *v = (atomic_t *)l; in atomic_long_sub_and_test() 198 atomic_t *v = (atomic_t *)l; in atomic_long_dec_and_test() [all …]
|
| /include/linux/ |
| A D | math64.h | 196 } l; in mul_u64_u64_shr() member 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() 206 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); 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() 215 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 242 } l; in mul_u64_u32_div() member 247 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div() [all …]
|
| A D | bitops.h | 30 #define GENMASK(h, l) \ argument 31 (((~0UL) << (l)) & (~0UL >> (CONFIG_SANDBOX_BITS_PER_LONG - 1 - (h)))) 33 #define GENMASK(h, l) \ argument 34 (((~0UL) << (l)) & (~0UL >> (BITS_PER_LONG - 1 - (h)))) 37 #define GENMASK_ULL(h, l) \ argument 38 (((~0ULL) << (l)) & (~0ULL >> (BITS_PER_LONG_LONG - 1 - (h)))) 171 static inline unsigned fls_long(unsigned long l) in fls_long() argument 173 if (sizeof(l) == 4) in fls_long() 174 return fls(l); in fls_long() 175 return fls64(l); in fls_long()
|
| /include/ |
| A D | imx8image.h | 300 #define append(p, s, l) do { \ argument 301 memcpy((p), (uint8_t *)(s), (l)); (p) += (l); \
|
| A D | usbdevice.h | 83 #define mmio_insw(r,b,l) ({ int __i ; \ argument 86 for (__i = 0; __i < l; __i++) { \ 93 #define mmio_outsw(r,b,l) ({ int __i; \ argument 96 for (__i = 0; __i < l; __i++) { \ 103 #define mmio_insb(r,b,l) ({ int __i ; \ argument 106 for (__i = 0; __i < l; __i++) { \
|
| A D | net-legacy.h | 481 u32 l; in net_read_u32() local 483 memcpy((void *)&l, (void *)from, sizeof(l)); in net_read_u32() 484 return l; in net_read_u32()
|
| A D | mxs_nand.h | 105 void mxs_nand_get_layout(struct mtd_info *mtd, struct mxs_nand_layout *l);
|
| A D | ppc_asm.tmpl | 220 addi r23,r23,(hdlr - 1b)@l; \
|
| /include/dm/ |
| A D | of.h | 124 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) argument
|
| /include/linux/byteorder/ |
| A D | swab.h | 131 __u32 l = x & ((1ULL<<32)-1); in __fswab64() local 132 return (((__u64)__swab32(l)) << 32) | ((__u64)(__swab32(h))); in __fswab64()
|
| /include/net/ |
| A D | tcp.h | 132 u32 l; member
|
Completed in 22 milliseconds