/Linux-v4.19/arch/sparc/include/asm/ |
D | string.h | 27 size_t __size = (__arg2); \ 30 __retval = __memscan_zero(__addr, __size); \ 32 __retval = __memscan_generic(__addr, (__char), __size); \
|
/Linux-v4.19/include/xen/interface/io/ |
D | ring.h | 128 #define FRONT_RING_INIT(_r, _s, __size) do { \ argument 131 (_r)->nr_ents = __RING_SIZE(_s, __size); \ 135 #define BACK_RING_INIT(_r, _s, __size) do { \ argument 138 (_r)->nr_ents = __RING_SIZE(_s, __size); \ 143 #define FRONT_RING_ATTACH(_r, _s, __size) do { \ argument 147 (_r)->nr_ents = __RING_SIZE(_s, __size); \ 150 #define BACK_RING_ATTACH(_r, _s, __size) do { \ argument 154 (_r)->nr_ents = __RING_SIZE(_s, __size); \
|
/Linux-v4.19/arch/arm/mach-sa1100/ |
D | generic.h | 17 #define SET_BANK(__nr,__start,__size) \ argument 19 mi->bank[__nr].size = (__size)
|
/Linux-v4.19/include/linux/netfilter_arp/ |
D | arp_tables.h | 29 #define ARPT_ENTRY_INIT(__size) \ argument 32 .next_offset = (__size), \
|
/Linux-v4.19/arch/arm/mach-pxa/ |
D | generic.h | 22 #define SET_BANK(__nr,__start,__size) \ argument 24 mi->bank[__nr].size = (__size)
|
/Linux-v4.19/include/linux/netfilter_ipv4/ |
D | ip_tables.h | 45 #define IPT_ENTRY_INIT(__size) \ argument 48 .next_offset = (__size), \
|
/Linux-v4.19/include/linux/ |
D | filter.h | 379 const int __size = bytes_to_bpf_size(sizeof(type)); \ 380 BUILD_BUG_ON(__size < 0); \ 381 __size; \ 386 const int __size = bytes_to_bpf_size(FIELD_SIZEOF(type, field)); \ 387 BUILD_BUG_ON(__size < 0); \ 388 __size; \ 393 const int __size = bpf_size_to_bytes(BPF_SIZE((insn)->code)); \ 394 WARN_ON(__size < 0); \ 395 __size; \
|
D | socket.h | 126 static inline struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size, in __cmsg_nxthdr() argument 132 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr()
|
/Linux-v4.19/include/uapi/linux/netfilter/ |
D | x_tables.h | 57 #define XT_TARGET_INIT(__name, __size) \ argument 60 .target_size = XT_ALIGN(__size), \
|
/Linux-v4.19/include/uapi/linux/netfilter_ipv6/ |
D | ip6_tables.h | 142 #define IP6T_ENTRY_INIT(__size) \ argument 145 .next_offset = (__size), \
|
/Linux-v4.19/drivers/net/ethernet/sun/ |
D | sunhme.c | 255 #define hme_dma_map(__hp, __ptr, __size, __dir) \ argument 256 ((__hp)->dma_map((__hp)->dma_dev, (__ptr), (__size), (__dir))) 257 #define hme_dma_unmap(__hp, __addr, __size, __dir) \ argument 258 ((__hp)->dma_unmap((__hp)->dma_dev, (__addr), (__size), (__dir))) 259 #define hme_dma_sync_for_cpu(__hp, __addr, __size, __dir) \ argument 260 ((__hp)->dma_sync_for_cpu((__hp)->dma_dev, (__addr), (__size), (__dir))) 261 #define hme_dma_sync_for_device(__hp, __addr, __size, __dir) \ argument 262 ((__hp)->dma_sync_for_device((__hp)->dma_dev, (__addr), (__size), (__dir))) 281 #define hme_dma_map(__hp, __ptr, __size, __dir) \ argument 282 dma_map_single((__hp)->dma_dev, (__ptr), (__size), (__dir)) [all …]
|
/Linux-v4.19/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00.h | 96 #define GET_DURATION(__size, __rate) (((__size) * 8 * 10) / (__rate)) argument 97 #define GET_DURATION_RES(__size, __rate)(((__size) * 8 * 10) % (__rate)) argument
|
/Linux-v4.19/arch/arm/include/asm/ |
D | uaccess.h | 378 #define __put_user_nocheck(x, __pu_ptr, __err, __size) \ argument 381 __put_user_nocheck_##__size(x, __pu_addr, __err); \
|
/Linux-v4.19/kernel/trace/ |
D | trace_kprobe.c | 1254 int size, __size, dsize; in kprobe_perf_func() local 1279 __size = sizeof(*entry) + tk->tp.size + dsize; in kprobe_perf_func() 1280 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in kprobe_perf_func() 1304 int size, __size, dsize; in kretprobe_perf_func() local 1315 __size = sizeof(*entry) + tk->tp.size + dsize; in kretprobe_perf_func() 1316 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in kretprobe_perf_func()
|
/Linux-v4.19/drivers/mmc/core/ |
D | sd.c | 60 const int __size = size; \ 61 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \ 67 if (__size + __shft > 32) \
|
D | mmc.c | 55 const int __size = size; \ 56 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \ 62 if (__size + __shft > 32) \
|
/Linux-v4.19/drivers/scsi/bfa/ |
D | bfa.h | 75 #define CQ_INCR(__index, __size) do { \ argument 77 (__index) &= ((__size) - 1); \
|