/Linux-v5.4/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-v5.4/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-v5.4/arch/arm/mach-sa1100/ |
D | generic.h | 17 #define SET_BANK(__nr,__start,__size) \ argument 19 mi->bank[__nr].size = (__size)
|
/Linux-v5.4/include/linux/netfilter_arp/ |
D | arp_tables.h | 29 #define ARPT_ENTRY_INIT(__size) \ argument 32 .next_offset = (__size), \
|
/Linux-v5.4/arch/arm/mach-pxa/ |
D | generic.h | 19 #define SET_BANK(__nr,__start,__size) \ argument 21 mi->bank[__nr].size = (__size)
|
/Linux-v5.4/include/linux/netfilter_ipv4/ |
D | ip_tables.h | 42 #define IPT_ENTRY_INIT(__size) \ argument 45 .next_offset = (__size), \
|
/Linux-v5.4/include/uapi/linux/netfilter/ |
D | x_tables.h | 57 #define XT_TARGET_INIT(__name, __size) \ argument 60 .target_size = XT_ALIGN(__size), \
|
/Linux-v5.4/include/uapi/linux/netfilter_ipv6/ |
D | ip6_tables.h | 142 #define IP6T_ENTRY_INIT(__size) \ argument 145 .next_offset = (__size), \
|
/Linux-v5.4/include/linux/ |
D | filter.h | 413 const int __size = bytes_to_bpf_size(sizeof(type)); \ 414 BUILD_BUG_ON(__size < 0); \ 415 __size; \ 420 const int __size = bytes_to_bpf_size(FIELD_SIZEOF(type, field)); \ 421 BUILD_BUG_ON(__size < 0); \ 422 __size; \ 427 const int __size = bpf_size_to_bytes(BPF_SIZE((insn)->code)); \ 428 WARN_ON(__size < 0); \ 429 __size; \
|
D | socket.h | 127 static inline struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size, in __cmsg_nxthdr() argument 133 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr()
|
/Linux-v5.4/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-v5.4/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00.h | 84 #define GET_DURATION(__size, __rate) (((__size) * 8 * 10) / (__rate)) argument 85 #define GET_DURATION_RES(__size, __rate)(((__size) * 8 * 10) % (__rate)) argument
|
/Linux-v5.4/kernel/trace/ |
D | trace_kprobe.c | 1356 int size, __size, dsize; in kprobe_perf_func() local 1381 __size = sizeof(*entry) + tk->tp.size + dsize; in kprobe_perf_func() 1382 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in kprobe_perf_func() 1406 int size, __size, dsize; in kretprobe_perf_func() local 1417 __size = sizeof(*entry) + tk->tp.size + dsize; in kretprobe_perf_func() 1418 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in kretprobe_perf_func()
|
/Linux-v5.4/arch/arm/include/asm/ |
D | uaccess.h | 421 #define __put_user_nocheck(x, __pu_ptr, __err, __size) \ argument 424 __put_user_nocheck_##__size(x, __pu_addr, __err); \
|
/Linux-v5.4/drivers/mmc/core/ |
D | sd.c | 57 const int __size = size; \ 58 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \ 64 if (__size + __shft > 32) \
|
D | mmc.c | 53 const int __size = size; \ 54 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \ 60 if (__size + __shft > 32) \
|
/Linux-v5.4/drivers/scsi/bfa/ |
D | bfa.h | 66 #define CQ_INCR(__index, __size) do { \ argument 68 (__index) &= ((__size) - 1); \
|